import React from 'react'; import Svg, { Path, PathProps, SvgProps } from 'react-native-svg'; export type IconProps = Partial & Omit & { height?: number; width?: number; size?: number; }; export const RootSvg = (props: IconProps) => { const { children, height, size, viewBox = '0 0 24 24', width } = props; return ( {children} ); }; export type RootPathProps = Pick & { pathFill?: SvgProps['fill']; pathOpacity?: PathProps['opacity']; }; export const RootPath = (props: RootPathProps) => { const { d, pathFill = 'black', pathOpacity } = props; return ( ); };