wix-storybook-utils
Version:
Utilities for automated component documentation within Storybook
21 lines (18 loc) • 442 B
text/typescript
export type PlaceholderProps = {
skin: 'light' | 'dark';
width: string | number;
height: string | number;
};
export type StackProps = {
justifyContent?: string;
flexDirection?: 'column' | 'row';
alignItems?: string;
padding?: string | number;
margin?: string | number;
width?: string | number;
height?: string | number;
gap?: string;
};
export type BackgroundProps = {
skin: 'dark' | 'light' | 'blue' | 'yellow';
};