Skip to content

Commit d8acae4

Browse files
committed
fix: correct icon import from Sparkles to Sparkle
Build was failing due to wrong import name. phosphor-react exports 'Sparkle' not 'Sparkles'.
1 parent dccc1be commit d8acae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/docs/v1-1-features/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'use client';
77

88
import Navigation from '@/components/Navigation';
9-
import { Sparkles } from 'phosphor-react';
9+
import { Sparkle } from 'phosphor-react';
1010

1111
export default function V11FeaturesPage() {
1212
return (
@@ -16,7 +16,7 @@ export default function V11FeaturesPage() {
1616
{/* Header */}
1717
<div className="mb-8">
1818
<div className="flex items-center gap-4 mb-4">
19-
<Sparkles size={48} weight="duotone" className="text-green-400" />
19+
<Sparkle size={48} weight="duotone" className="text-green-400" />
2020
<h1 className="text-5xl font-bold">v1.1 Features</h1>
2121
</div>
2222
<p className="text-gray-400">Enhanced formatting, unicode support, and security improvements</p>

0 commit comments

Comments
 (0)