mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import { ClassComponent } from '../ts-helpers';
|
|
|
|
export interface IconProps {
|
|
label?: string | undefined;
|
|
spin?: boolean;
|
|
}
|
|
|
|
export interface IconSlots {}
|
|
|
|
export interface IconEmits {}
|
|
|
|
export declare class Icon extends ClassComponent<IconProps, IconSlots, IconEmits> {}
|