UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

37 lines (36 loc) 1.37 kB
import { SvelteComponentTyped } from "svelte"; import type { HTMLOlAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLOlAttributes & { divClass?: string; timeClass?: string; date?: Date | string; olClass?: string; classDiv?: string; classTime?: string; classOl?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type GroupProps = typeof __propDef.props; export type GroupEvents = typeof __propDef.events; export type GroupSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let divClass: $$Props['divClass'] = 'p-5 mb-4 bg-gray-50 rounded-lg border border-gray-100 dark:bg-gray-800 dark:border-gray-700'; * @prop export let timeClass: $$Props['timeClass'] = 'text-lg font-semibold text-gray-900 dark:text-white'; * @prop export let date: $$Props['date'] = ''; * @prop export let olClass: $$Props['olClass'] = 'mt-3 divide-y divider-gray-200 dark:divide-gray-700'; * @prop export let classDiv: $$Props['classDiv'] = ''; * @prop export let classTime: $$Props['classTime'] = ''; * @prop export let classOl: $$Props['classOl'] = ''; */ export default class Group extends SvelteComponentTyped<GroupProps, GroupEvents, GroupSlots> { } export {};