UNPKG

material-components

Version:

Stateless UI components for react that follow material design

14 lines (12 loc) 207 B
import React from 'react'; export default ({ name, style = {} }) => ( <i style={Object.assign( { lineHeight: 'inherit' }, style )} className={`icon-${name}`} /> );