import { forwardRef } from 'react'; import type { IconProps } from './types'; export const Check = forwardRef(function Check( { color = 'currentColor', strokeWidth = 2, ...props }, forwardedRef, ) { return ( ); });