primevue-mirror/packages/icons/src/index.d.ts

15 lines
329 B
TypeScript
Raw Normal View History

import type { EmitFn } from '@primevue/core';
2023-03-31 21:45:03 +00:00
export interface IconProps {
label?: string | undefined;
spin?: boolean;
}
export interface IconSlots {}
2024-05-16 14:05:43 +00:00
export interface IconEmitsOptions {}
2023-03-31 21:45:03 +00:00
export declare type IconEmits = EmitFn<IconEmitsOptions>;
declare const Icon: DefineComponent<IconProps, IconSlots, IconEmits>;