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) • 842 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
title?: string | number | Array<string | number>;
menuIcon?: string | null;
class?: string | undefined;
/**
* Update head / document.title. Set to false to disable
*/ head?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
menuIcon: {
toggleMenu: () => void;
isMenuOpen: boolean;
};
title: {};
default: {};
actions: {};
};
};
export type AppBarProps = typeof __propDef.props;
export type AppBarEvents = typeof __propDef.events;
export type AppBarSlots = typeof __propDef.slots;
export default class AppBar extends SvelteComponentTyped<AppBarProps, AppBarEvents, AppBarSlots> {
}
export {};