mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
16 lines
407 B
TypeScript
16 lines
407 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type $RestProps = SvelteHTMLElements["li"];
|
|
|
|
type $Props = {
|
|
[key: `data-${string}`]: any;
|
|
};
|
|
|
|
export type SideNavDividerProps = Omit<$RestProps, keyof $Props> & $Props;
|
|
|
|
export default class SideNavDivider extends SvelteComponentTyped<
|
|
SideNavDividerProps,
|
|
Record<string, any>,
|
|
{}
|
|
> {}
|