@atlrdsgn/kit
Version:
An ever–expanding library of React components, primitives, and tools
18 lines (17 loc) • 801 B
TypeScript
import { RecipeVariants, RuntimeFn } from '@vanilla-extract/recipes';
/** --------------------------------------------------- */
declare const size: Record<"xs" | "sm" | "md", string>;
declare const shape: Record<"rounded" | "pill", string>;
declare const variant: Record<"orange" | "carbon" | "jade", string>;
export type ChipSizeProps = keyof typeof size;
export type ChipShapeProps = keyof typeof shape;
export type ChipVProps = keyof typeof variant;
export type ChipVariantProps = RecipeVariants<typeof chip>;
export declare const chip: RuntimeFn<{
size: Record<"xs" | "sm" | "md", string>;
shape: Record<"rounded" | "pill", string>;
variant: Record<"orange" | "carbon" | "jade", string>;
removeShadow: Record<"true", string>;
}>;
export {};
//# sourceMappingURL=chip.css.d.ts.map