mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
15 lines
399 B
TypeScript
15 lines
399 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export type TooltipFooterProps = {
|
|
/**
|
|
* Specify a selector to be focused inside the footer when opening the tooltip
|
|
* @default "a[href], button:not([disabled])"
|
|
*/
|
|
selectorPrimaryFocus?: string;
|
|
};
|
|
|
|
export default class TooltipFooter extends SvelteComponentTyped<
|
|
TooltipFooterProps,
|
|
Record<string, any>,
|
|
{ default: {} }
|
|
> {}
|