Skip to content

Commit 4f1c0c5

Browse files
committed
Chore: fix format
1 parent fb3401a commit 4f1c0c5

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.changeset/spicy-apes-sparkle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"fumadocs-ui": patch
2+
'fumadocs-ui': patch
33
---
44

55
Add 'idea' callout type

apps/docs/content/docs/ui/what-is-fumadocs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can fetch data from server to display content, or integrate with CMS receivi
4141
Fumadocs is maintained by Fuma and many contributors, with care on the maintainability of codebase.
4242

4343
While we don't aim to offer every functionality people wanted, we're more focused on making basic features perfect and well-maintained.
44-
You can also help Fumadocs to be more useful by contributing!
44+
You can also help Fumadocs to be more useful by contributing!
4545

4646
## When to use Fumadocs
4747

packages/ui/src/components/callout.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ import { CircleCheck, CircleX, Info, TriangleAlert, Sun } from 'lucide-react';
22
import type { ComponentProps, ReactNode } from 'react';
33
import { cn } from '@/utils/cn';
44

5-
export type CalloutType = 'info' | 'warn' | 'error' | 'success' | 'warning' | 'idea';
5+
export type CalloutType =
6+
| 'info'
7+
| 'warn'
8+
| 'error'
9+
| 'success'
10+
| 'warning'
11+
| 'idea';
612

713
const iconClass = 'size-5 -me-0.5 fill-(--callout-color) text-fd-card';
814

0 commit comments

Comments
 (0)