mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export type ContextMenuDividerProps = {};
|
|
|
|
export default class ContextMenuDivider extends SvelteComponentTyped<
|
|
ContextMenuDividerProps,
|
|
Record<string, any>,
|
|
{}
|
|
> {}
|