create-next-app-template
Version:
This is a template set up to create Next.js App with fast speed and high performance<br/> The current template is provided in a **page routing** structure.<br/>
15 lines (13 loc) • 517 B
text/typescript
interface TypographyType {
txtSize?: number | string;
txtWeight?: 'lighter' | 'normal' | 'medium' | 'bold';
txtAlign?: 'start' | 'end' | 'center';
txtColor?: string;
txtShadow?: string;
txtTransform?: 'none' | 'capitalize' | 'uppercase' | 'lowercase' | 'initial' | 'inherit';
lineHeight?: number | string;
whiteSpace?: 'normal' | 'nowrap' | 'pre' | 'pre-wrap' | 'pre-line';
ellipsis?: { isActive?: boolean; line?: number };
txtDecoration?: 'underline' | string;
}
export type { TypographyType };