A card component to display success messages with primary and secondary actions.
Operation Successful
Your operation was completed successfully. Thank you for your patience.
Dependencies
react-icons
Installation
npm install react-icons
Props
Name | Type | Default | Description |
---|---|---|---|
title | string | undefined | The title of the success card. |
message | string | undefined | The message or description displayed in the card. |
primaryAction | { label: string; onClick?: () => void; } | undefined | Primary action details, including label and optional onClick handler. |
secondaryAction | { label: string; onClick?: () => void; } | undefined | Secondary action details, including label and optional onClick handler. |