@heroui/shared-icons
Version:
Internal icons set, commonly used in the components stories
11 lines (8 loc) • 331 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { IconSvgProps } from './types.mjs';
import 'react';
interface CheckIconProps extends IconSvgProps {
filled?: boolean;
}
declare const CheckIcon: ({ filled, ...props }: CheckIconProps) => react_jsx_runtime.JSX.Element;
export { CheckIcon, type CheckIconProps };