Last active
February 3, 2021 01:46
-
-
Save raflyfahrezi/0b6813dadd8e22a6cd1df248ae037190 to your computer and use it in GitHub Desktop.
Declare fonts for theming
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Fonts = { | |
fontFamily: 'your fonts name', | |
fontSize: { | |
12: '12px', | |
14: '14px', | |
16: '16px', | |
20: '20px', | |
24: '24px', | |
32: '32px', | |
48: '48px', | |
}, | |
lineHeight: { | |
12: '19.416px', | |
14: '22.652px', | |
16: '25.888px', | |
20: '32.360px', | |
24: '38.832px', | |
32: '51.776px', | |
48: '77.664px', | |
}, | |
} | |
export default Fonts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment