UNPKG

@smollweide/material-ui-speed-dial

Version:

Components, that implements material design speed dial for material-ui v1

22 lines (17 loc) 377 B
import React from 'react'; import { withStyles } from '@material-ui/core/styles'; import styles from './SpeedDialLabel.styles'; // Types export const SpeedDialLabel = ({ className, classes, text }) => { return React.createElement( 'span', { className: `${className} ${classes.root}` }, text ); }; // $FlowFixMe export default withStyles(styles)(SpeedDialLabel);