Skip to content

Commit

Permalink
fix(Label): add md-label class
Browse files Browse the repository at this point in the history
  • Loading branch information
bfbiggs committed Sep 18, 2019
1 parent deecc8d commit 90e2492
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion react/src/lib/Label/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const Label = ({
return (
<label
className={
`${className ? `${className}` : ''}` +
'md-label' +
`${className ? ` ${className}` : ''}` +
`${theme ? ` md-label--${theme}` : ''}`
}
htmlFor={htmlFor}
Expand Down

0 comments on commit 90e2492

Please sign in to comment.