@atlaskit/inline-message
Version:
An inline message lets users know when important information is available or when an action is required.
21 lines (20 loc) • 509 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import type { FC } from 'react';
import type { IconAppearance, IconSpacing } from '../../types';
interface MessageIconProps {
appearance: IconAppearance;
isOpen: boolean;
label?: string;
spacing: IconSpacing;
}
/**
* __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;