UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

38 lines (37 loc) 1.27 kB
import { SvelteComponentTyped } from "svelte"; import type { HTMLLiAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLLiAttributes & { title?: string; date?: string; svgClass?: string; classLi?: string; classDiv?: string; classTime?: string; classH3?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { icon: {}; default: {}; }; }; export type TimelineItemProps = typeof __propDef.props; export type TimelineItemEvents = typeof __propDef.events; export type TimelineItemSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let title: $$Props['title'] = ''; * @prop export let date: $$Props['date'] = ''; * @prop export let svgClass: $$Props['svgClass'] = 'w-3 h-3 text-primary-600 dark:text-primary-400'; * @prop export let classDiv: $$Props['classDiv'] = ''; * @prop export let classLi: $$Props['classLi'] = ''; * @prop export let classTime: $$Props['classTime'] = ''; * @prop export let classH3: $$Props['classH3'] = ''; */ export default class TimelineItem extends SvelteComponentTyped<TimelineItemProps, TimelineItemEvents, TimelineItemSlots> { } export {};