carbon-components-svelte/types/Tabs/TabContent.svelte.d.ts
2023-07-19 08:37:54 -07:00

20 lines
491 B
TypeScript

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