framework7-vue
Version:
Build full featured iOS & Android apps using Framework7 & Vue
78 lines (57 loc) • 1.07 kB
TypeScript
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
declare const Icon: DefineComponent<
{
material: {
type: StringConstructor;
},
f7: {
type: StringConstructor;
},
icon: {
type: StringConstructor;
},
ios: {
type: StringConstructor;
},
md: {
type: StringConstructor;
},
tooltip: {
type: StringConstructor;
},
tooltipTrigger: {
type: StringConstructor;
},
size: {
type: StringConstructor | NumberConstructor;
},
color: {
type: StringConstructor;
},
colorTheme: {
type: StringConstructor;
},
textColor: {
type: StringConstructor;
},
bgColor: {
type: StringConstructor;
},
borderColor: {
type: StringConstructor;
},
rippleColor: {
type: StringConstructor;
},
dark: {
type: BooleanConstructor;
}
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin,
>;
export default Icon;