import React from 'react' import Svg, {Path} from 'react-native-svg' import {Props, useCommonSVGProps} from '#/components/icons/common' export const IconTemplate_Stroke2_Corner0_Rounded = React.forwardRef( function LogoImpl(props: Props, ref) { const {fill, size, style, ...rest} = useCommonSVGProps(props) return ( ) }, ) export function createSinglePathSVG({path}: {path: string}) { return React.forwardRef(function LogoImpl(props, ref) { const {fill, size, style, ...rest} = useCommonSVGProps(props) return ( ) }) }