UNPKG

@centreon/react-components

Version:
19 lines (13 loc) 482 B
import React from 'react'; import PowerSettings from '@material-ui/icons/PowerSettingsNew'; import MaterialIcon from '../MaterialIcon'; import RoundedInvertedIcon from '../RoundedInvertedIcon'; const RoundedInvertedPowerSettings = RoundedInvertedIcon(PowerSettings); function IconPowerSettings(props) { return ( <MaterialIcon {...props} aria-label="icon enable disable"> <RoundedInvertedPowerSettings /> </MaterialIcon> ); } export default IconPowerSettings;