UNPKG

sveltestrap

Version:
20 lines (17 loc) 478 B
import { SvelteComponentTyped } from 'svelte'; import { BackgroundColor } from './shared'; export interface NavbarProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap['nav']> { color?: BackgroundColor; container?: boolean | 'fluid'; // TODO also sm-xxl? dark?: boolean; expand?: boolean | string; fixed?: string; light?: boolean; sticky?: string; } export default class Navbar extends SvelteComponentTyped< NavbarProps, {}, { default: {} } > {}