2024-05-16 10:50:43 +00:00
|
|
|
import { DefineComponent, EmitFn } from '../ts-helpers';
|
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
|
|
|
|
2024-05-16 10:50:43 +00:00
|
|
|
export declare type IconEmits = EmitFn<IconEmitsOptions>;
|
|
|
|
|
|
|
|
declare const Icon: DefineComponent<IconProps, IconSlots, IconEmits>;
|