@radix-ui/themes
Version:
[](https://radix-ui.com/themes)
10 lines (9 loc) • 635 B
TypeScript
import * as React from 'react';
import type { ComponentPropsWithout, RemovedProps } from '../helpers/index.js';
interface IconProps extends ComponentPropsWithout<'svg', RemovedProps | 'children'> {
}
declare const ThickCheckIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
declare const ChevronDownIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
declare const ThickChevronRightIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export { ChevronDownIcon, ThickCheckIcon, ThickChevronRightIcon };
export type { IconProps };