Skip to content

Commit 5de6d92

Browse files
committed
Fix some other type-only imports in material module
1 parent ccf156d commit 5de6d92

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

packages/material/src/complex/ValidationIcon.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,8 @@ import React from 'react';
2727
import Badge from '@material-ui/core/Badge';
2828
import ErrorOutlineIcon from '@material-ui/icons/ErrorOutline';
2929
import Tooltip from '@material-ui/core/Tooltip';
30-
import {
31-
StyledComponentProps,
32-
withStyles,
33-
WithStyles,
34-
createStyles,
35-
Theme
36-
} from '@material-ui/core/styles';
30+
import type { StyledComponentProps, WithStyles } from '@material-ui/core/styles';
31+
import { createStyles, Theme, withStyles } from '@material-ui/core/styles';
3732

3833
export { StyledComponentProps };
3934
const styles = createStyles(({ palette }: Theme) => ({

0 commit comments

Comments
 (0)