FormActions
FormActions is a right-aligned, wrapping layout for form and overlay actions. Supply the action controls as children.
import { Button, FormActions } from "density-base-ui";
export default function FormActionsExample() {
return (
<FormActions>
<Button type="button">Cancel</Button>
<Button emphasis="primary" type="button">
Save changes
</Button>
</FormActions>
);
}| Prop | Values | Required | Default | Behavior | Description |
|---|
This component also accepts props from native APIs. They are passed through and intentionally kept out of this focused Density API table.