UNPKG

@recastui/themes

Version:

Recastui Design System component themes with Tailwindcss and CVA

22 lines (19 loc) 1.1 kB
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types'; declare enum ButtonVariantTypes { solid = "solid", outline = "outline", ghost = "ghost", link = "link" } declare const button: (props?: ({ variant?: "solid" | "outline" | "ghost" | "link" | "unstyled" | null | undefined; color?: "main" | "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "grass" | "orange" | "brown" | "sky" | "mint" | "lime" | "yellow" | "amber" | "gold" | "bronze" | "error" | "info" | "success" | "warning" | null | undefined; fullWidth?: boolean | null | undefined; disabled?: boolean | null | undefined; pill?: boolean | null | undefined; rounded?: boolean | null | undefined; square?: "sm" | "lg" | "xl" | "xs" | "base" | null | undefined; size?: "sm" | "lg" | "xl" | "xs" | "base" | null | undefined; } & class_variance_authority_dist_types.ClassProp) | undefined) => string; type ButtonTheme = typeof button; export { ButtonTheme, ButtonVariantTypes, button };