import * as React from 'react'; import { convertIcon } from '../components/Icon'; function SvgComponent(props: React.SVGProps) { return ( ); } const IconComponent = convertIcon(SvgComponent, 'notification'); export default IconComponent;