// eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore (ignore Path unused component) import { Svg } from "react-native-svg"; import { SVGIconProps } from "../types"; // The `generateNewIcons.js`s script uses this template to generate // the new `Icon…` component. Don't edit this file to avoid // adding breaking changes to the process. const IconTemplate = ({ size, style, ...props }: SVGIconProps) => ( {/* SVGContent */} ); export default IconTemplate;