X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/36b4e36f75ea0035b6b0de6aaaad4edd3231371c..21237e49270dda6c87200630b03e1047a96d5d86:/src/components/icon/icon.tsx?ds=sidebyside diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index 946d81a5..a0fbd6ef 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -48,8 +48,9 @@ import SettingsApplications from '@material-ui/icons/SettingsApplications'; import SettingsEthernet from '@material-ui/icons/SettingsEthernet'; import Star from '@material-ui/icons/Star'; import StarBorder from '@material-ui/icons/StarBorder'; +import Warning from '@material-ui/icons/Warning'; -export type IconType = React.SFC<{ className?: string }>; +export type IconType = React.SFC<{ className?: string, style?: object }>; export const AddIcon: IconType = (props) => ; export const AddFavoriteIcon: IconType = (props) => ; @@ -99,3 +100,4 @@ export const TrashIcon: IconType = (props) => ; export const UserPanelIcon: IconType = (props) => ; export const UsedByIcon: IconType = (props) => ; export const WorkflowIcon: IconType = (props) => ; +export const WarningIcon: IconType = (props) => ;