@centreon/react-components
Version:
react components used by centreon web frontend
19 lines (13 loc) • 482 B
JSX
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;