We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485b33f commit f410904Copy full SHA for f410904
src/BootstrapMixin.js
@@ -16,7 +16,7 @@ const BootstrapMixin = {
16
bsStyle: React.PropTypes.oneOf(styleMaps.STYLES),
17
/**
18
* Size variants
19
- * @type {("xsmall"|"small"|"medium"|"large")}
+ * @type {("xsmall"|"small"|"medium"|"large"|"xs"|"sm"|"md"|"lg")}
20
*/
21
bsSize: CustomPropTypes.keyOf(styleMaps.SIZES)
22
},
src/styleMaps.js
@@ -40,7 +40,11 @@ const styleMaps = {
40
'large': 'lg',
41
'medium': 'md',
42
'small': 'sm',
43
- 'xsmall': 'xs'
+ 'xsmall': 'xs',
44
+ 'lg': 'lg',
45
+ 'md': 'md',
46
+ 'sm': 'sm',
47
+ 'xs': 'xs'
48
49
GLYPHS: [
50
'asterisk',
0 commit comments