keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
18 lines (17 loc) • 808 B
TypeScript
import { type SwitchRootProps } from "radix-vue";
import type { HTMLAttributes } from "vue";
export interface SwitchProps {
thumbClass?: string;
variant?: "icon" | "default";
class?: HTMLAttributes["class"];
}
declare const _default: import("vue").DefineComponent<SwitchProps & SwitchRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:checked": (payload: boolean) => any;
}, string, import("vue").PublicProps, Readonly<SwitchProps & SwitchRootProps> & Readonly<{
"onUpdate:checked"?: ((payload: boolean) => any) | undefined;
}>, {
class: HTMLAttributes["class"];
variant: "icon" | "default";
thumbClass: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;