@atlrdsgn/kit
Version:
An ever–expanding library of React components, primitives, and tools
23 lines (22 loc) • 919 B
TypeScript
import { RecipeVariants, RuntimeFn } from '@vanilla-extract/recipes';
/** ----------------- variants ---------------------- */
declare const size: Record<"small" | "medium" | "large", string>;
declare const variant: Record<"carbon" | "jade" | "sapphire" | "mauve", string>;
declare const border: {
true: string[];
};
/** ------------------------------------------------------- */
export type BannerSize = keyof typeof size;
export type BannerBorderBoolean = keyof typeof border;
export type BannerVariant = keyof typeof variant;
export type BannerVariants = RecipeVariants<typeof banner>;
export declare const banner: RuntimeFn<{
size: Record<"small" | "medium" | "large", string>;
border: {
true: string[];
};
variant: Record<"carbon" | "jade" | "sapphire" | "mauve", string>;
shape: Record<"rounded" | "pill" | "sharp", string>;
}>;
export {};
//# sourceMappingURL=banner.css.d.ts.map