@progress/kendo-vue-common
Version:
Kendo UI for Vue Common Utilities package
101 lines (100 loc) • 2.51 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { BaseIconProps } from './BaseIconProps';
/**
* Represents the props of the [Kendo UI for Vue Icon component]({% slug overview_icon %}).
*/
export interface FontIconProps extends BaseIconProps {
/**
* Represents the name of the icon.
*/
name?: string;
}
/**
* @hidden
*/
export interface FontIconState {
}
/**
* @hidden
*/
export interface FontIconComputed {
[key: string]: any;
}
/**
* @hidden
*/
export interface FontIconMethods {
[key: string]: any;
}
/**
* @hidden
*/
export interface FontIconData {
}
/**
* @hidden
*/
export interface FontIconAll extends FontIconMethods, FontIconData, FontIconComputed, FontIconState {
}
/**
* @hidden
*/
declare const FontIcon: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
name: StringConstructor;
themeColor: {
type: StringConstructor;
};
size: {
type: StringConstructor;
};
flip: {
type: StringConstructor;
};
fillMode: {
type: StringConstructor;
};
id: StringConstructor;
ariaLabel: StringConstructor;
title: StringConstructor;
tabIndex: NumberConstructor;
}>, {}, {}, {
fontClassNames(this: FontIconAll): {
[x: string]: any;
[x: number]: any;
'k-icon': boolean;
'k-font-icon': boolean;
'k-flip-h': boolean;
'k-flip-v': boolean;
};
}, {
handleClick(e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: any;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
name: StringConstructor;
themeColor: {
type: StringConstructor;
};
size: {
type: StringConstructor;
};
flip: {
type: StringConstructor;
};
fillMode: {
type: StringConstructor;
};
id: StringConstructor;
ariaLabel: StringConstructor;
title: StringConstructor;
tabIndex: NumberConstructor;
}>> & Readonly<{
onClick?: (...args: any[] | unknown[]) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { FontIcon };