mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface HeaderNavProps
|
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["nav"]> {}
|
|
|
|
export default class HeaderNav extends SvelteComponentTyped<
|
|
HeaderNavProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|