UNPKG

@atlrdsgn/kit

Version:

An ever–expanding library of React components, primitives, and tools

16 lines (15 loc) • 768 B
import { RecipeVariants, RuntimeFn } from '@vanilla-extract/recipes'; /** ------------------------------------------------ */ declare const size: Record<"xs" | "sm" | "md" | "lg", string>; declare const variant: Record<"orange" | "carbon" | "jade" | "sapphire" | "ghost", string>; /** -------------------------------------------- */ export type ButtonSize = keyof typeof size; export type ButtonVariant = keyof typeof variant; export type ButtonVariantProps = RecipeVariants<typeof button>; export declare const button: RuntimeFn<{ size: Record<"xs" | "sm" | "md" | "lg", string>; variant: Record<"orange" | "carbon" | "jade" | "sapphire" | "ghost", string>; font: Record<"system" | "mono", string>; }>; export {}; //# sourceMappingURL=button.css.d.ts.map