optimize Settings Customization for rendering

This commit is contained in:
Proddy
2023-04-22 21:02:11 +02:00
parent 4b9bddd565
commit e1ffd8860d
4 changed files with 331 additions and 235 deletions

View File

@@ -32,9 +32,9 @@ interface OptionIconProps {
const OptionIcon: FC<OptionIconProps> = ({ type, isSet }) => {
const Icon = OPTION_ICONS[type][isSet ? 0 : 1];
return isSet ? (
<Icon color="primary" sx={{ fontSize: 14, verticalAlign: 'middle' }} />
<Icon color="primary" sx={{ fontSize: 16, verticalAlign: 'middle' }} />
) : (
<Icon sx={{ fontSize: 14, verticalAlign: 'middle' }} />
<Icon sx={{ fontSize: 16, verticalAlign: 'middle' }} />
);
};