vue-data-ui
Version:
A user-empowering data visualization Vue 3 components library for eloquent data storytelling
16 lines (12 loc) • 341 B
TypeScript
import type { DefineComponent } from 'vue';
export type { VueUiIconName } from 'vue-data-ui';
declare const VueUiIcon: DefineComponent<{
name: VueUiIconName;
stroke?: string;
strokeWidth?: number;
size?: number | string;
isSpin?: boolean;
spinDuration?: string;
}>;
export default VueUiIcon;
export { VueUiIcon };