# Callout Component
A built-in component provided by `nextra-theme-docs`.
import Callout from 'nextra-theme-docs/callout'
## Example
A **callout** is a short piece of text intended to attract attention.
## Usage
### Default
**Space Invaders** is a 1978 shoot 'em up arcade game developed by Tomohiro
Nishikado.
```mdx
import Callout from 'nextra-theme-docs/callout'
**Space Invaders** is a 1978 shoot 'em up arcade game developed by Tomohiro
Nishikado.
```
### Warning
This API will be deprecated soon.
```mdx
import Callout from 'nextra-theme-docs/callout'
This API will be deprecated soon.
```
### Error
This is a dangerous feature that can cause everything to explode.
```mdx
import Callout from 'nextra-theme-docs/callout'
This is a dangerous feature that can cause everything to explode.
```