UNPKG

@centreon/react-components

Version:
22 lines (18 loc) 419 B
import React from 'react'; import Edit from '@material-ui/icons/Edit'; import styled from '@emotion/styled'; import MaterialIcon from '../MaterialIcon'; const FloatingEdit = styled(Edit)(() => ({ color: '#0072CE', fontSize: 21, position: 'absolute', right: 3, })); function IconEdit(props) { return ( <MaterialIcon {...props}> <FloatingEdit /> </MaterialIcon> ); } export default IconEdit;