TwFontSize
Enum to determine the font size.
enum TwFontSize {
Xs = 'text-xs',
Sm = 'text-sm',
Base = 'text-base',
Lg = 'text-lg',
Xl = 'text-xl',
Xl2 = 'text-2xl',
Xl3 = 'text-3xl',
Xl4 = 'text-4xl',
Xl5 = 'text-5xl',
Xl6 = 'text-6xl',
Xl7 = 'text-7xl',
Xl8 = 'text-8xl',
Xl9 = 'text-9xl',
}Example
text-xs
The quick brown fox jumps over the lazy dog.
text-sm
The quick brown fox jumps over the lazy dog.
text-base
The quick brown fox jumps over the lazy dog.
text-lg
The quick brown fox jumps over the lazy dog.
text-xl
The quick brown fox jumps over the lazy dog.
text-2xl
The quick brown fox jumps over the lazy dog.
text-3xl
The quick brown fox jumps over the lazy dog.
...