mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface HeaderUtilitiesProps {}
|
|
|
|
export default class HeaderUtilities extends SvelteComponentTyped<
|
|
HeaderUtilitiesProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|