An alert or informational box used to highlight important messages.
Default informational callout.
<x-ui::callout>
Please read the documentation carefully before proceeding.
</x-ui::callout>
Different styles for different semantic meanings.
<x-ui::callout type="info">Information message</x-ui::callout>
<x-ui::callout type="success">Success message</x-ui::callout>
<x-ui::callout type="warning">Warning message</x-ui::callout>
<x-ui::callout type="danger">Danger message</x-ui::callout>
Add a title to provide more context.
<x-ui::callout type="warning" title="Warning: Action Required">
Your subscription will expire in 3 days. Please renew to avoid service interruption.
</x-ui::callout>
Allow users to close the callout.
<x-ui::callout dismissible>
You can close this message by clicking the X on the right.
</x-ui::callout>