mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface ContextMenuDividerProps {}
|
|
|
|
export default class ContextMenuDivider extends SvelteComponentTyped<
|
|
ContextMenuDividerProps,
|
|
{},
|
|
{}
|
|
> {}
|