This commit is contained in:
Rami Bitar
2026-05-08 15:06:54 -04:00
parent 6706a11f7b
commit 4f95e56513
2 changed files with 1 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ export type ThemeProps = {
mutedForegroundColor?: string;
borderColor?: string;
radius?: "none" | "sm" | "md" | "lg" | "xl";
buttonRadius?: "none" | "sm" | "md" | "lg" | "xl" | "full";
buttonRadius?: "none" | "sm" | "md" | "lg" | "xl";
shadow?: "none" | "sm" | "md" | "lg" | "xl";
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full";
};
@@ -33,7 +33,6 @@ const buttonRadiusMap: Record<NonNullable<ThemeProps["buttonRadius"]>, string> =
md: "0.5rem",
lg: "0.75rem",
xl: "1rem",
full: "9999px",
};
const shadowMap: Record<NonNullable<ThemeProps["shadow"]>, string> = {

View File

@@ -68,7 +68,6 @@ export const Root: RootConfig<{
{ label: "Medium", value: "md" },
{ label: "Large", value: "lg" },
{ label: "Extra large", value: "xl" },
{ label: "Full (pill)", value: "full" },
],
},
shadow: {