mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
/// <reference types="svelte" />
|
|
import type { SvelteComponentTyped } from "svelte";
|
|
|
|
export interface 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,
|
|
{},
|
|
{ default: {} }
|
|
> {}
|