mirror this repo: https://github.com/The-Run-Philosophy-Organization/run.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
# Callout Component
|
|
|
|
A built-in component provided by `nextra-theme-docs`.
|
|
|
|
import Callout from 'nextra-theme-docs/callout'
|
|
|
|
## Example
|
|
|
|
<Callout>
|
|
A **callout** is a short piece of text intended to attract attention.
|
|
</Callout>
|
|
|
|
## Usage
|
|
|
|
### Default
|
|
|
|
<Callout emoji="👾">
|
|
**Space Invaders** is a 1978 shoot 'em up arcade game developed by Tomohiro
|
|
Nishikado.
|
|
</Callout>
|
|
|
|
```mdx
|
|
import Callout from 'nextra-theme-docs/callout'
|
|
|
|
<Callout emoji="👾">
|
|
**Space Invaders** is a 1978 shoot 'em up arcade game developed by Tomohiro
|
|
Nishikado.
|
|
</Callout>
|
|
```
|
|
|
|
### Warning
|
|
|
|
<Callout type="warning" emoji="⚠️">
|
|
This API will be deprecated soon.
|
|
</Callout>
|
|
|
|
```mdx
|
|
import Callout from 'nextra-theme-docs/callout'
|
|
|
|
<Callout type="warning" emoji="⚠️">
|
|
This API will be deprecated soon.
|
|
</Callout>
|
|
```
|
|
|
|
### Error
|
|
|
|
<Callout type="error" emoji="🚫">
|
|
This is a dangerous feature that can cause everything to explode.
|
|
</Callout>
|
|
|
|
```mdx
|
|
import Callout from 'nextra-theme-docs/callout'
|
|
|
|
<Callout type="error" emoji="️🚫">
|
|
This is a dangerous feature that can cause everything to explode.
|
|
</Callout>
|
|
```
|
|
|