monphind-ui
Version:
A reactive component library built on top of the Web Components API
21 lines (20 loc) • 472 B
TypeScript
declare const name = "m-icon-button";
type Props = {
disabled: boolean;
type: "" | "outlined" | "text";
};
declare const IconButton_base: {
new (): Props & HTMLElement;
readonly defineElement: () => void;
prototype: HTMLElement;
};
export declare class IconButton extends IconButton_base {
}
import 'vue';
import { Expand } from "./core/expand";
declare module 'vue' {
interface GlobalComponents {
[name]: Expand<Props>;
}
}
export {};