import React from 'react' import { css } from '@emotion/css' export type SvgIconProps = Omit, 'className'> & { extraClasses?: string }; const sanitizeProps = ({extraClasses, ...o}: SvgIconProps) => o; const styles = { svgIcon: css` fill: currentColor; width: 1em; height: 1em; display: inline-block; font-size: 1.5rem; transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; flex-shrink: 0; -moz-user-select: none; `, } /** * From: https://material-ui.com/components/material-icons/ */ export const CancelIcon = (props: SvgIconProps) => ( ); /** * From: https://material-ui.com/components/material-icons/ */ export const CancelOutlinedIcon = (props: SvgIconProps) => ( ); /** * From: https://material-ui.com/components/material-icons/ */ export const InfoOutlinedIcon = (props: SvgIconProps) => ( ); /** * From: https://material-ui.com/components/material-icons/ */ export const HelpOutlinedIcon = (props: SvgIconProps) => ( ); /** * From: https://material-ui.com/components/material-icons/ */ export const TranslateIcon = (props: SvgIconProps) => ( ); export const LoaderRings = (props: React.SVGProps) => ( // By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL )