UNPKG

@atlaskit/flag

Version:

A flag is used for confirmations, alerts, and acknowledgments that require minimal user interaction, often displayed using a flag group.

16 lines (15 loc) 492 B
/** * @jsxRuntime classic * @jsx jsx */ import { type ComponentType, type FC } from 'react'; import type { CustomThemeButtonProps } from '@atlaskit/button/custom-theme-button-types'; import type { ActionsType, AppearanceTypes } from './types'; type FlagActionsProps = { appearance: AppearanceTypes; actions: ActionsType; linkComponent?: ComponentType<CustomThemeButtonProps>; testId?: string; }; declare const FlagActions: FC<FlagActionsProps>; export default FlagActions;