import React from 'react' import Svg, {Path} from 'react-native-svg' import {type 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, viewBox, strokeWidth = 0, strokeLinecap = 'butt', strokeLinejoin = 'miter', }: { path: string viewBox?: string strokeWidth?: number strokeLinecap?: 'butt' | 'round' | 'square' strokeLinejoin?: 'miter' | 'round' | 'bevel' }) { return React.forwardRef(function LogoImpl(props, ref) { const {fill, size, style, gradient, ...rest} = useCommonSVGProps(props) const hasStroke = strokeWidth > 0 return ( {gradient} ) }) } export function createSinglePathSVG2({path}: {path: string}) { return React.forwardRef(function LogoImpl(props, ref) { const {fill, size, style, gradient, ...rest} = useCommonSVGProps(props) return ( {gradient} ) }) } export function createMultiPathSVG({paths}: {paths: string[]}) { return React.forwardRef(function LogoImpl(props, ref) { const {fill, size, style, gradient, ...rest} = useCommonSVGProps(props) return ( {gradient} {paths.map((path, i) => ( ))} ) }) }