@teravn/onui
Version:
The React UI component library is based on MUI
16 lines (15 loc) • 414 B
TypeScript
import { OwnerStateThemeType } from '.';
declare const IconButton: () => {
MuiIconButton: {
styleOverrides: {
root: ({ ownerState, theme }: OwnerStateThemeType) => {
padding: number;
'&:hover': {
color: string;
backgroundColor: string;
};
};
};
};
};
export default IconButton;