carbon-components-svelte/types/Tabs/TabContent.svelte.d.ts

22 lines
528 B
TypeScript

import type { SvelteComponentTyped } from "svelte";
import type { SvelteHTMLElements } from "svelte/elements";
type $RestProps = SvelteHTMLElements["div"];
type $Props = {
/**
* Set an id for the top-level element
* @default "ccs-" + Math.random().toString(36)
*/
id?: string;
[key: `data-${string}`]: any;
};
export type TabContentProps = Omit<$RestProps, keyof $Props> & $Props;
export default class TabContent extends SvelteComponentTyped<
TabContentProps,
Record<string, any>,
{ default: {} }
> {}