import Svg, { G, Path, Defs } from "react-native-svg"; /* SVGR has dropped some elements not supported by react-native-svg: filter */ import type { SvgProps } from "react-native-svg"; import { Ref, forwardRef } from "react"; const SvgHub = (props: SvgProps, ref: Ref) => ( ); const ForwardRef = forwardRef(SvgHub); export default ForwardRef;