import type { SVGProps } from 'react' import { Ref, forwardRef, memo } from 'react' const SvgFunnelOutline1 = (props: SVGProps, ref: Ref) => ( ) const ForwardRef = forwardRef(SvgFunnelOutline1) const Memo = memo(ForwardRef) export default Memo