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