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