UNPKG

@atlrdsgn/kit

Version:

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

17 lines (16 loc) • 772 B
import { RecipeVariants, RuntimeFn } from '@vanilla-extract/recipes'; declare const size: Record<"small" | "medium", string>; declare const appearance: Record<"orange" | "carbon" | "jade" | "sapphire", string>; /** --------------------------------------------------------------- */ /** --- icon --- */ export declare const badgeIcon: string; export declare const badgeContent: string; export type BadgeSizeVariants = keyof typeof size; export type BadgeColorVariants = keyof typeof appearance; export type BadgeVariantProps = RecipeVariants<typeof badge>; export declare const badge: RuntimeFn<{ size: Record<"small" | "medium", string>; appearance: Record<"orange" | "carbon" | "jade" | "sapphire", string>; }>; export {}; //# sourceMappingURL=badge.css.d.ts.map