UNPKG

carbon-components-svelte

Version:
18 lines (14 loc) 449 B
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> } > {}