import * as React from "react"; import Svg, { Path } from "react-native-svg"; import type { SvgProps } from "react-native-svg"; import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; const SvgAddLens = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, ...passedProps, }; return ( ); }; const ForwardRef = forwardRef(SvgAddLens); export default ForwardRef;