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

10 lines (7 loc) 253 B
import * as React from 'react'; export interface IconBaseProps extends Omit<React.SVGProps<SVGSVGElement>, 'ref'> { className?: string | undefined; label?: string | undefined; spin?: boolean | undefined; } export declare class IconBase {}