UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

29 lines (28 loc) 869 B
import { SvelteComponentTyped } from "svelte"; import type { HTMLAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLAttributes<HTMLDivElement> & { divClass?: string; cols?: string; gap?: number; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type LayoutProps = typeof __propDef.props; export type LayoutEvents = typeof __propDef.events; export type LayoutSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let divClass: $$Props['divClass'] = 'grid'; * @prop export let cols: $$Props['cols'] = 'grid-cols-1 sm:grid-cols-2'; * @prop export let gap: $$Props['gap'] = 6; */ export default class Layout extends SvelteComponentTyped<LayoutProps, LayoutEvents, LayoutSlots> { } export {};