Adding disabled color to paragraph

This commit is contained in:
apanizo 2018-10-04 11:15:38 +02:00
parent 958c1f9952
commit 213a37ef89
2 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,7 @@ type Props = {
noMargin?: boolean,
weight?: 'light' | 'regular' | 'bolder' | 'bold',
size?: 'sm' | 'md' | 'lg' | 'xl' | 'xxl',
color?: 'soft' | 'medium' | 'dark' | 'white' | 'fancy' | 'primary' | 'secondary' | 'warning',
color?: 'soft' | 'medium' | 'dark' | 'white' | 'fancy' | 'primary' | 'secondary' | 'warning' | 'disabled',
transform?: 'capitalize' | 'lowercase' | 'uppercase',
children: React$Node,
dot?: boolean,

View File

@ -31,6 +31,10 @@
color: $secondary;
}
.disabled {
color: $disabled;
}
.white {
color: white;
}