Rate this page:
A text callout to alert users to important information.
1 2import ForgeUI, { SectionMessage } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<Text> | Yes | The content of the section message. |
title | string | The title of the section message. | |
appearance | "info" | "warning" | "error" | "confirmation" | "change" | Shows an icon next to the title and changes the appearance of the section message. If appearance is not specified, the default appearance is "info" . |
1 2<SectionMessage title="Heading" appearance="info"> <Text>Some text content</Text> <Text>More content</Text> </SectionMessage>
Rate this page: