import * as React from "react"; import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; import { IconoirContext } from "./IconoirContext"; function SvgGoogleDriveCheck( passedProps: SvgProps, svgRef?: React.Ref> ) { const context = React.useContext(IconoirContext); const props = { ...context, ...passedProps, }; return ( ); } const ForwardRef = React.forwardRef(SvgGoogleDriveCheck); export default ForwardRef;