aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/input/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/input/index.tsx')
-rw-r--r--packages/forms/src/input/index.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/forms/src/input/index.tsx b/packages/forms/src/input/index.tsx
index e410f8fef..a2d7c62d5 100644
--- a/packages/forms/src/input/index.tsx
+++ b/packages/forms/src/input/index.tsx
@@ -113,6 +113,7 @@ class InputComponent extends Component<IProps, IState> {
113 min, 113 min,
114 max, 114 max,
115 step, 115 step,
116 required,
116 } = this.props; 117 } = this.props;
117 118
118 const { 119 const {
@@ -132,6 +133,7 @@ class InputComponent extends Component<IProps, IState> {
132 showLabel={showLabel} 133 showLabel={showLabel}
133 htmlFor={id} 134 htmlFor={id}
134 className={classes.label} 135 className={classes.label}
136 isRequired={required}
135 > 137 >
136 <div 138 <div
137 className={classnames({ 139 className={classnames({