Rate this page:
A layout container for multiple buttons.
1 2import ForgeUI, { ButtonSet } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<Button> | Yes | The buttons to display in the set. On large-width devices, the buttons are rendered in a row that wraps to fit. On mobile devices, the buttons are full-width. |
1 2<ButtonSet> <Button text="Allow" onClick={handleAllow} /> <Button text="Deny" onClick={handleDeny} /> </ButtonSet>
Rate this page: