@saleor/macaw-ui
Version:
Saleor's UI component library
59 lines (57 loc) • 1.28 kB
TypeScript
import { RecipeVariants } from '@vanilla-extract/recipes';
export declare const labelRecipe: import('@vanilla-extract/recipes').RuntimeFn<{
size: {
small: string;
medium: string;
large: string;
};
active: {
true: {};
};
typed: {
true: {};
};
disabled: {
true: {};
};
error: {
true: {};
};
}>;
export declare const spanRecipe: import('@vanilla-extract/recipes').RuntimeFn<{
size: {
small: string;
medium: string;
large: string;
};
disabled: {
true: string;
};
typed: {
true: {
transform: "translate(0, 0) scale(0.84)";
}[];
};
error: {
true: string;
};
}>;
export declare const inputRecipe: import('@vanilla-extract/recipes').RuntimeFn<{
size: {
small: string;
medium: string;
large: string;
};
error: {
true: string;
};
}>;
export declare const helperTextRecipe: import('@vanilla-extract/recipes').RuntimeFn<{
size: {
small: string;
medium: string;
large: string;
};
}>;
export type LabelVariants = RecipeVariants<typeof labelRecipe>;
export type InputVariants = RecipeVariants<typeof inputRecipe>;