UNPKG

svelte-ux

Version:

A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.

30 lines (29 loc) 803 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title?: string | string[] | null; subheading?: string | string[] | null; class?: string | undefined; classes?: { root?: string; container?: string; title?: string; subheading?: string; }; }; events: { [evt: string]: CustomEvent<any>; }; slots: { avatar: {}; title: {}; subheading: {}; actions: {}; }; }; export type HeaderProps = typeof __propDef.props; export type HeaderEvents = typeof __propDef.events; export type HeaderSlots = typeof __propDef.slots; export default class Header extends SvelteComponentTyped<HeaderProps, HeaderEvents, HeaderSlots> { } export {};