@centreon/react-components
Version:
react components used by centreon web frontend
16 lines (13 loc) • 341 B
JavaScript
import styled from '@emotion/styled';
function RoundedInvertedIcon(Icon) {
return styled(Icon)(() => ({
color: '#fff',
backgroundColor: '#707070',
borderRadius: '50%',
MozBoxSizing: 'border-box',
WebkitBoxSizing: 'border-box',
boxSizing: 'border-box',
padding: 4,
}));
}
export default RoundedInvertedIcon;