UNPKG

@eslamdevui/ui

Version:

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

31 lines (30 loc) 1.1 kB
import theme from '#build/ui/prose/card'; import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig, LinkProps } from '../../types'; type ProseCard = ComponentConfig<typeof theme, AppConfig, 'card', 'ui.prose'>; export interface ProseCardProps { to?: LinkProps['to']; target?: LinkProps['target']; icon?: string; title?: string; description?: string; /** * @defaultValue 'primary' */ color?: ProseCard['variants']['color']; class?: any; ui?: ProseCard['slots']; } export interface ProseCardSlots { default(): any; title(): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseCardProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseCardProps> & Readonly<{}>, { color: ProseCard["variants"]["color"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseCardSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };