Javi Velasco 2015-12-19 20:59:49 +01:00
parent 4403003895
commit abcd097830
2 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,8 @@ const FontIcon = ({ children, className, value, ...other}) => {
const classes = ClassNames('material-icons', className);
return (
<span className={classes} {...other} >
{value ? value : children}
{value}
{children}
</span>
);
};

View File

@ -15,6 +15,7 @@
max-width: $tooltip-max-width;
padding: $tooltip-padding;
margin: $tooltip-margin 0;
font-family: Roboto, sans-serif;
font-size: $tooltip-font-size;
font-weight: $font-weight-bold;
line-height: $font-size-small;