UNPKG

@recastui/themes

Version:

Recastui Design System component themes with Tailwindcss and CVA

17 lines (14 loc) 833 B
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types'; declare enum BadgeVariantTypes { solid = "solid", outline = "outline", subtle = "subtle" } declare const badge: (props?: ({ variant?: "subtle" | "solid" | "outline" | 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; uppercase?: boolean | null | undefined; pill?: boolean | null | undefined; } & class_variance_authority_dist_types.ClassProp) | undefined) => string; type BadgeTheme = typeof badge; export { BadgeTheme, BadgeVariantTypes, badge };