mirror of
https://github.com/SomboChea/ui
synced 2024-11-16 03:04:27 +07:00
23 lines
293 B
TypeScript
23 lines
293 B
TypeScript
|
export const fontSize = {
|
||
|
xxl: '26px',
|
||
|
xl: '24px',
|
||
|
lg: '21px',
|
||
|
md: '18px',
|
||
|
base: '16px',
|
||
|
sm: '14px',
|
||
|
};
|
||
|
|
||
|
export const lineHeight = {
|
||
|
xl: '30px',
|
||
|
sm: '18px',
|
||
|
xs: '2',
|
||
|
xxs: '1.5',
|
||
|
};
|
||
|
|
||
|
export const fontWeight = {
|
||
|
light: 300,
|
||
|
regular: 400,
|
||
|
semiBold: 500,
|
||
|
bold: 700,
|
||
|
};
|