mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
- use Svelte 3.55.0 since that's the minimum target for SvelteKit and svelte-check - revert to using SvelteComponentTyped for high compatibility. We'll migrate to SvelteComponent after dropping Svelte 3
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface HeaderPanelDividerProps {}
|
|
|
|
export default class HeaderPanelDivider extends SvelteComponentTyped<
|
|
HeaderPanelDividerProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|