UNPKG

@atlaskit/inline-message

Version:

An inline message lets users know when important information is available or when an action is required.

20 lines (19 loc) 470 B
/** * @jsxRuntime classic * @jsx jsx */ import type { FC } from 'react'; import type { IconAppearance } from '../../types'; interface MessageIconProps { appearance: IconAppearance; isOpen: boolean; label?: string; } /** * __Selected icon__ * * The selected icon is used as the primary interactive element for the dialog. * Can be used with or without supporting text. */ declare const SelectedIcon: FC<MessageIconProps>; export default SelectedIcon;