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