Skip to content

DialogFooter

const DialogFooter: React.FC<DialogFooterProps>

Defined in: src/components/feedback/Dialog/DialogFooter.tsx:21

DialogFooter renders the action area at the bottom of a Dialog.

Example

<DialogFooter align="right">
<Button onClick={onCancel}>Cancel</Button>
<Button variant="filled" onClick={onConfirm}>Confirm</Button>
</DialogFooter>