mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
- Use `SvelteComponent` instead of `SvelteComponentTyped` - use `local` transitions for backwards-compatibility
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponent } from "svelte";
|
|
|
|
export interface HeaderPanelDividerProps {}
|
|
|
|
export default class HeaderPanelDivider extends SvelteComponent<
|
|
HeaderPanelDividerProps,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|