/* eslint-disable @typescript-eslint/ban-ts-comment */ // @ts-nocheck import { useIcon } from 'hooks'; import React from 'react'; import Svg, { Path, G, Rect, Defs, ClipPath } from 'react-native-svg'; import { IconProps } from '../types'; export const CheckGroup: React.FC = ({ colorVariant = 'white', ...props }) => { const { getIconColor } = useIcon(); return ( ); };