UNPKG

@nuxt/ui-pro

Version:

Ship beautiful web applications at the speed of light with Nuxt UI Pro.

24 lines (23 loc) 984 B
import type { ButtonProps } from '@nuxt/ui'; export interface ColorModeButtonProps extends /** @vue-ignore */ Pick<ButtonProps, 'as' | 'size' | 'disabled' | 'ui'> { /** * @defaultValue 'neutral' */ color?: ButtonProps['color']; /** * @defaultValue 'ghost' */ variant?: ButtonProps['variant']; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ColorModeButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ColorModeButtonProps> & Readonly<{}>, { color: "error" | "info" | "primary" | "secondary" | "success" | "warning" | "neutral"; variant: "link" | "solid" | "outline" | "soft" | "subtle" | "ghost"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, { fallback(props?: {}): any; }>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };