create-rivas-react
Version:
Boilerplate for create react with atomic design
14 lines (9 loc) • 359 B
TypeScript
declare type BaseComponent = {
style?: any;
className?: string;
id?: string;
};
declare type AlignType = 'left' | 'right' | 'center' | 'justify';
declare type FontWeightType = 'normal' | 'bold' | number | 'string';
declare type FontStyleType = 'normal' | 'italic';
declare type TextTransformType = 'none' | 'uppercase' | 'lowercase' | 'capitalize';