phase 1 complete

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-05 05:06:30 +00:00
parent de0e42cca8
commit abc6c011ea
4 changed files with 58 additions and 72 deletions

View File

@@ -3,7 +3,7 @@ import clsx from "clsx";
import Button from "../button/Button";
type CardVariant = "surface" | "panel" | "frosted" | "borderless" | "gradient";
type CardPadding = "none" | "sm" | "md" | "lg";
type CardPadding = "none" | "xs" | "sm" | "md" | "lg";
type CardShadow = "none" | "sm" | "md";
interface CardProps {
@@ -37,6 +37,7 @@ export const Card: React.FC<CardProps> = ({
const paddingClasses: Record<CardPadding, string> = {
none: "p-0",
xs: "p-3",
sm: "p-4 sm:p-5",
md: "p-5 sm:p-6",
lg: "p-6 sm:p-8",