import Svg, { Path } from "react-native-svg"; import type { SvgProps } from "react-native-svg"; import { Ref, forwardRef } from "react"; const SvgCalendar = (props: SvgProps, ref: Ref) => ( ); const ForwardRef = forwardRef(SvgCalendar); export default ForwardRef;