import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconSwitch = React.forwardRef(function IconSwitch( props: Props, ref: React.Ref ) { return ( ); }); IconSwitch.displayName = 'IconSwitch'; export {IconSwitch};