import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgComponent({ width = 20, height = 20, color = "#000", ...props }) { return ( ); } export default SvgComponent;