Custom components
Custom components you can use in mdx files.
Alert
Default
<Alert description="This is an info alert" />
Info
This is an info alert
Destructive
<Alert variant="destructive" description="This is a warning alert" />
Warning
This is a warning alert
Props
Prop | Type | Description | Default | Required |
---|---|---|---|---|
description | string | The description text shown in the alert | - | Yes |
variant | "destructive" | The visual style variant of the alert | - | No |
title | string | The title text shown in the alert | "Info" for default variant, "Warning" for destructive variant | No |