mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
28 lines
649 B
TypeScript
28 lines
649 B
TypeScript
import type { SvelteComponentTyped } from "svelte";
|
|
import type { ButtonProps } from "../Button/Button.svelte";
|
|
|
|
export type HeaderGlobalActionProps = ButtonProps & {
|
|
/**
|
|
* Set to `true` to use the active variant
|
|
* @default false
|
|
*/
|
|
isActive?: boolean;
|
|
|
|
/**
|
|
* Specify the icon to render
|
|
* @default undefined
|
|
*/
|
|
icon?: typeof import("svelte").SvelteComponent<any>;
|
|
|
|
/**
|
|
* Obtain a reference to the HTML button element
|
|
* @default null
|
|
*/
|
|
ref?: HTMLButtonElement;
|
|
};
|
|
|
|
export default class HeaderGlobalAction extends SvelteComponentTyped<
|
|
HeaderGlobalActionProps,
|
|
{ click: WindowEventMap["click"] },
|
|
{}
|
|
> {}
|