UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

20 lines (17 loc) 615 B
import * as React from 'react'; import { IconBaseProps } from '../../iconbase'; /** * Defines valid properties in ChevronDownIcon component. In addition to these, all properties of SVGSVGElement can be used in this component. * @group Properties */ export interface ChevronDownIconProps extends IconBaseProps {} /** * **PrimeReact - ChevronDownIcon** * * [Live Demo](https://www.primereact.org/icons/) * --- --- * ![PrimeReact](https://primefaces.org/cdn/primereact/images/logo-100.png) * * @group Component */ export declare class ChevronDownIcon extends React.Component<ChevronDownIconProps, any> {}