feat: list credit card according to design

This commit is contained in:
Christel Westerberg
2024-07-16 15:50:26 +02:00
parent d8f7e4157a
commit 09b1d322a7
12 changed files with 195 additions and 36 deletions

View File

@@ -14,6 +14,7 @@ export default function Button({
intent,
size,
variant,
wrapping,
...props
}: ButtonProps) {
const Comp = asChild ? Slot : "button"
@@ -22,6 +23,7 @@ export default function Button({
intent,
size,
theme,
wrapping,
variant,
})
return <Comp className={classNames} disabled={disabled} {...props} />