3 lines
156 B
TypeScript
3 lines
156 B
TypeScript
export type Size = 'tiny' | 'small' | 'medium' | 'large';
|
|
export type Type = 'default' | 'tertiary' | 'primary' | 'info' | 'success' | 'warning' | 'error';
|