// eslint-disable-next-line @typescript-eslint/ban-ts-comment //@ts-nocheck import type { VariantProps } from 'class-variance-authority' import * as React from 'react' import type { SVGProps } from 'react' import { iconVariants } from '../../iconVariants' type Color = VariantProps['color'] | undefined export const SvgSignHashtag = ({ color, className, ...props }: SVGProps & { color?: Color }) => React.cloneElement( , { className: iconVariants({ color, className, }), ...props, }, )