zmp-vue
Version:
Build full featured iOS & Android apps using ZMP & Vue
67 lines (50 loc) • 936 B
TypeScript
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
declare const FabButton: DefineComponent<
{
fabClose: {
type: PropType<boolean>;
},
label: {
type: PropType<string>;
},
target: {
type: PropType<string>;
},
tooltip: {
type: PropType<string>;
},
tooltipTrigger: {
type: PropType<string>;
},
color: {
type: PropType<string>;
},
colorTheme: {
type: PropType<string>;
},
textColor: {
type: PropType<string>;
},
bgColor: {
type: PropType<string>;
},
borderColor: {
type: PropType<string>;
},
rippleColor: {
type: PropType<string>;
},
themeDark: {
type: PropType<boolean>;
}
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin,
("click")[],
"click"
>;
export default FabButton;