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