feat(saju-ui-v2): OrnamentBloom + TopRibbon + OrnateFrame + TitleBlock

This commit is contained in:
2026-05-27 02:03:59 +09:00
parent fd84e17f0b
commit 78e7e68bb0
4 changed files with 107 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
export default function OrnamentBloom({ size = 18, color = '#D4AF37' }) {
return (
<svg width={size} height={size} viewBox="0 0 18 18" fill="none">
<circle cx="9" cy="9" r="2.4" fill={color} />
{[0, 60, 120, 180, 240, 300].map((angle) => (
<ellipse key={angle} cx="9" cy="4" rx="1.6" ry="3" fill={color} opacity="0.7"
transform={`rotate(${angle} 9 9)`} />
))}
</svg>
);
}