UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

20 lines (19 loc) 871 B
import type { ButtonProps, LinkPropsKeys } from '../types'; export interface DashboardSidebarToggleProps extends Omit<ButtonProps, LinkPropsKeys | 'color' | 'variant'> { /** * @defaultValue 'neutral' */ color?: ButtonProps['color']; /** * @defaultValue 'ghost' */ variant?: ButtonProps['variant']; /** * The side of the sidebar to toggle. * @defaultValue 'left' */ side?: 'left' | 'right'; } declare const __VLS_export: import("vue").DefineComponent<DashboardSidebarToggleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DashboardSidebarToggleProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;