- Updated content collections to include new schemas for better document handling. - Added new documentation files for comparisons, customization, and internationalization. - Introduced a manual installation guide and improved markdown support. - Updated package.json with new dependencies for enhanced functionality. - Added new images for documentation and improved layout components for better user experience. - Adjusted TypeScript configurations for better path management.
26 lines
372 B
Plaintext
26 lines
372 B
Plaintext
---
|
|
title: Callout
|
|
description: Add callout to your docs
|
|
preview: callout
|
|
---
|
|
|
|
## Usage
|
|
|
|
Add it to your MDX components.
|
|
|
|
```tsx
|
|
import { Callout } from 'fumadocs-ui/components/callout';
|
|
|
|
<MDX
|
|
components={{
|
|
Callout,
|
|
}}
|
|
/>;
|
|
```
|
|
|
|
See [Markdown](/docs/markdown#callouts) for usages.
|
|
|
|
### Reference
|
|
|
|
<AutoTypeTable path="./content/docs/props.ts" name="CalloutProps" />
|