"use client"; import PivoineDocsIcon from "./PivoineDocsIcon"; export default function PivoineIconDemo() { return (
{/* Header */}

Pivoine Docs Icon

A beautiful animated peony blossom icon with interactive states

{/* Main Showcase */}
{/* Large Interactive */}

Interactive (Hover & Click)

Hover to bloom • Click to close

{/* With Label */}

With Label

Perfect for hero sections

{/* Non-Interactive */}

Static (Non-Interactive)

Ideal for favicons & PWA icons

{/* Size Variations */}

Size Variations

64px
Favicon

96px
Small

128px
Medium

192px
Large

256px
X-Large

{/* Feature List */}

Features

{[ { icon: "🌸", title: "Realistic Design", description: "Multi-layered peony with natural gradients", }, { icon: "✨", title: "Smooth Animations", description: "Gentle breathing in normal state", }, { icon: "🎭", title: "Interactive States", description: "Bloom on hover, close on click", }, { icon: "💫", title: "Particle Effects", description: "12 bloom particles flying around", }, { icon: "🎨", title: "Beautiful Colors", description: "Pink to purple gradient palette", }, { icon: "♿", title: "Accessible", description: "Reduced motion & touch support", }, { icon: "📱", title: "Responsive", description: "Works perfectly on all devices", }, { icon: "⚡", title: "High Performance", description: "GPU-accelerated CSS animations", }, ].map((feature, i) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Usage Example */}

Quick Start

						{`import PivoineDocsIcon from '@/components/icons/PivoineDocsIcon'

// Basic usage


// With label


// Static for favicon
`}
					
{/* Footer */}

Made with 🌸 for beautiful documentation experiences

); }