mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 19:46:36 +00:00
19 lines
442 B
TypeScript
19 lines
442 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { SvelteHTMLElements } from "svelte/elements";
|
|
|
|
type RestProps = SvelteHTMLElements["span"];
|
|
|
|
export interface PopoverContentProps extends RestProps {
|
|
/**
|
|
* @default null
|
|
*/
|
|
className?: undefined;
|
|
|
|
[key: `data-${string}`]: any;
|
|
}
|
|
|
|
export default class PopoverContent extends SvelteComponentTyped<
|
|
PopoverContentProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|