SVG icon set
git clone https://git.lucas.co/cce-icons.git
Redesign star as a five-petal blossom matching the original png
Distinct petal ellipses with deep grooves replace the fused-lobe
paths, after png/star.png's plum-blossom silhouette. House style
kept (#f1fa8c, white center dot).
Co-Authored-By: Claude Fable 5 <[email protected]>
svg/star.svg | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/svg/star.svg b/svg/star.svg
index 4467cbb..5f595fe 100644
--- a/svg/star.svg
+++ b/svg/star.svg
@@ -1,11 +1,11 @@
<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
+ <!-- Five-petal blossom: distinct petals, deep grooves (after png/star.png) -->
<g fill="#f1fa8c">
- <!-- Pronounced lobes with wide outer edges and deep grooves -->
- <path d="M20 20 L13 14 Q20 2 27 14 Z" transform="rotate(0 20 20)"/>
- <path d="M20 20 L13 14 Q20 2 27 14 Z" transform="rotate(72 20 20)"/>
- <path d="M20 20 L13 14 Q20 2 27 14 Z" transform="rotate(144 20 20)"/>
- <path d="M20 20 L13 14 Q20 2 27 14 Z" transform="rotate(216 20 20)"/>
- <path d="M20 20 L13 14 Q20 2 27 14 Z" transform="rotate(288 20 20)"/>
+ <ellipse cx="20" cy="10" rx="5.4" ry="9" transform="rotate(0 20 20)" />
+ <ellipse cx="20" cy="10" rx="5.4" ry="9" transform="rotate(72 20 20)" />
+ <ellipse cx="20" cy="10" rx="5.4" ry="9" transform="rotate(144 20 20)" />
+ <ellipse cx="20" cy="10" rx="5.4" ry="9" transform="rotate(216 20 20)" />
+ <ellipse cx="20" cy="10" rx="5.4" ry="9" transform="rotate(288 20 20)" />
</g>
<!-- Bright center -->
<circle cx="20" cy="20" r="3" fill="#ffffff" />