@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
17 lines • 682 B
JavaScript
import React from 'react';
import CalendarTodayIcon from '@mui/icons-material/CalendarToday';
import ClearIcon from '@mui/icons-material/Clear';
import MuiIconButton from '@mui/material/IconButton';
import { styled } from '@mui/material/styles';
export const CalendarTodaySmallIcon = () => {
return React.createElement(CalendarTodayIcon, { fontSize: "small" });
};
export const ClearSmallIcon = () => {
return React.createElement(ClearIcon, { fontSize: "small" });
};
export const IconButton = styled(MuiIconButton)(({ theme }) => ({
...theme.typography.defaultFont,
padding: '0px',
color: theme.palette.black.main
}));
//# sourceMappingURL=DateTimeStyles.js.map