@atlaskit/section-message
Version:
A section message is used to alert users to a particular section of the screen.
13 lines (12 loc) • 565 B
TypeScript
import type { SectionMessageProps } from './types';
/**
* __Section message__
*
* A section message is used to alert users to a particular section of the screen.
*
* - [Examples](https://atlassian.design/components/section-message/examples)
* - [Code](https://atlassian.design/components/section-message/code)
* - [Usage](https://atlassian.design/components/section-message/usage)
*/
declare const SectionMessage: React.ForwardRefExoticComponent<React.PropsWithoutRef<SectionMessageProps> & React.RefAttributes<HTMLElement>>;
export default SectionMessage;