flowbite-svelte
Version:
Flowbite components for Svelte
29 lines (28 loc) • 977 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { HTMLAttributes } from 'svelte/elements';
declare const __propDef: {
props: HTMLAttributes<HTMLElement> & {
tag?: "dt" | "dd";
dtClass?: string;
ddClass?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type DescriptionListProps = typeof __propDef.props;
export type DescriptionListEvents = typeof __propDef.events;
export type DescriptionListSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let tag: $$Props['tag'] = 'dt';
* @prop export let dtClass: $$Props['dtClass'] = 'text-gray-500 md:text-lg dark:text-gray-400';
* @prop export let ddClass: $$Props['ddClass'] = 'text-lg font-semibold';
*/
export default class DescriptionList extends SvelteComponentTyped<DescriptionListProps, DescriptionListEvents, DescriptionListSlots> {
}
export {};