UNPKG

@eslamdevui/ui

Version:

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

33 lines (32 loc) 1.21 kB
import theme from '#build/ui/page-marquee'; import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '../types'; type PageMarquee = ComponentConfig<typeof theme, AppConfig, 'pageMarquee'>; export interface PageMarqueeProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; pauseOnHover?: boolean; reverse?: boolean; orientation?: PageMarquee['variants']['orientation']; repeat?: number; overlay?: boolean; class?: any; ui?: PageMarquee['slots']; } export interface PageMarqueeSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<PageMarqueeProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PageMarqueeProps> & Readonly<{}>, { repeat: number; orientation: PageMarquee["variants"]["orientation"]; overlay: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, PageMarqueeSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };