admin/components/icons/PlayCircleIcon.tsx
alisaza e1eaf5eff5 feat: initial ghabilee-admin backoffice app
Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js
app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
2026-09-05 13:12:59 +03:30

22 lines
683 B
TypeScript

export default function PlayCircleIcon({ className = 'size-6', color = '#f68b1f' }) {
return (
<svg
className={className}
fill="none"
height="48"
viewBox="0 0 48 48"
width="48"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4C12.9543 4 4 12.9543 4 24C4 35.0457 12.9543 44 24 44Z"
fill={color}
/>
<path
d="M21.387 31.6916L30.8274 26.1179C32.3909 25.1948 32.3909 22.8052 30.8274 21.8821L21.387 16.3084C19.8674 15.4112 18 16.5789 18 18.4263V29.5737C18 31.4211 19.8674 32.5888 21.387 31.6916Z"
fill="white"
/>
</svg>
)
}