09-advanced/05-svg.tsx
SVG
Example
Official Cake20 View example for svg.
export default () => (
<svg class="size-8 text-amber-500" viewBox="0 0 24 24" aria-label="Candle">
<path fill="currentColor" d="M11 10h2v10h-2z" />
<path fill="currentColor" d="M12 2c2 3 2 5 0 7-2-2-2-4 0-7z" />
</svg>
);