import * as React from "react"; import Svg, { Path } from "react-native-svg"; import type { SvgProps } from "react-native-svg"; const SvgCodePlus = ({ size = 24, stroke = 2, color = "currentColor", ...props }: { size: number, stroke: number, color: string, }) => ( ); export default SvgCodePlus;