mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 03:49:34 +00:00
13 lines
329 B
TypeScript
13 lines
329 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface HeaderNavProps
|
|
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["nav"]> {
|
|
[key: `data-${string}`]: any;
|
|
}
|
|
|
|
export default class HeaderNav extends SvelteComponentTyped<
|
|
HeaderNavProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|