geist-ui-svelte
Version:
<img src="./src/lib/assets/demo-page.png">
25 lines (24 loc) • 680 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
visible?: boolean;
ariaLabel?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type PageProps = typeof __propDef.props;
export type PageEvents = typeof __propDef.events;
export type PageSlots = typeof __propDef.slots;
/**
* Displays a page over the original content.
*
* [See Docs](https://geist-ui-svelte.dev/components/page) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
*/
export default class Page extends SvelteComponent<PageProps, PageEvents, PageSlots> {
}
export {};