UNPKG

@eslamdevui/ui

Version:

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

27 lines (26 loc) 1.04 kB
import type { AppConfig } from '@nuxt/schema'; import type { LinkProps } from '../Link.vue'; import theme from '#build/ui/prose/callout'; import type { ComponentConfig } from '../../types/utils'; type Callout = ComponentConfig<typeof theme, AppConfig, 'callout', 'ui.prose'>; export interface CalloutProps { to?: LinkProps['to']; target?: LinkProps['target']; icon?: string; /** * @defaultValue 'neutral' */ color?: Callout['variants']['color']; class?: any; ui?: Callout['slots']; } export interface CalloutSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<CalloutProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<CalloutProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, CalloutSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };