carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
16 lines (13 loc) • 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: {} }
> {}