Created custom Loader component

This commit is contained in:
John Lyon-Smith
2018-03-02 08:55:17 -08:00
parent 5e790ba65c
commit 30fcdf9d77
13 changed files with 113 additions and 31 deletions

View File

@@ -1,5 +1,7 @@
export const colorInfo = {
text: '#000000',
textInverse: '#FFFFFF',
textPlaceholder: '#EEEEEE',
alertText: '#FF0000',
grayText: '#B0B0B0',
buttonBackground: '#3498DB',
@@ -28,10 +30,12 @@ export const fontInfo = {
size: {
small: '10pt',
medium: '12pt',
large: '14pt'
large: '14pt',
huge: '26pt',
},
color: {
'normal': colorInfo.text,
'inverse': colorInfo.textInverse,
'alert': colorInfo.alertText,
'dimmed': colorInfo.grayText,
}