Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/alert.md
1# Alert23A callout to draw user's attention.45## Key Props67- `title`: to set the title of the Alert.8- `description`: to set the description of the Alert.9- `icon`: to show an [Icon](/docs/components/icon).10- `avatar`: to show an [Avatar](/docs/components/avatar).11- `color`: to change the color of the Alert.12- `variant`: to change the variant of the Alert.13- `close`: to display a [Button](/docs/components/button) to dismiss the Alert.14- `actions`: to add some [Button](/docs/components/button) actions to the Alert.15- `orientation`: to change the orientation of the Alert.16- `class`: to override the base styles of the Alert.1718## Usage1920```vue21<UAlert22<!-- props here -->23/>24```25