carbon-components-svelte
Version:
Svelte implementation of the Carbon Design System
18 lines (14 loc) • 449 B
TypeScript
import { 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;
children?: (this: void) => void;
};
export default class TooltipFooter extends SvelteComponentTyped<
TooltipFooterProps,
Record<string, any>,
{ default: Record<string, never> }
> {}