UNPKG

geist-ui-svelte

Version:

<img src="./src/lib/assets/demo-page.png">

27 lines (26 loc) 877 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { initialShow?: boolean; label: string; /** The label to be shown when expanded */ showLabel?: string | undefined; /** Adds animation to the open and close of the content */ animate?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type DetailsProps = typeof __propDef.props; export type DetailsEvents = typeof __propDef.events; export type DetailsSlots = typeof __propDef.slots; /** * An expandable component to hide / show content. * * [See Docs](https://geist-ui-svelte.dev/components/details) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class Details extends SvelteComponent<DetailsProps, DetailsEvents, DetailsSlots> { } export {};