admin/components/icons/BellIcon.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

20 lines
1.3 KiB
XML

export default function BellIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
height="24"
viewBox="0 0 24 24"
width="24"
xmlns="http://www.w3.org/2000/svg"
>
<path
clipRule="evenodd"
d="M12 2.25C11.5858 2.25 11.25 2.58579 11.25 3V3.77567C8.32341 4.12967 6.05469 6.6216 6.05469 9.64286V13.1032C6.05469 13.9299 5.76251 14.7301 5.23012 15.3626L4.24089 16.5348C3.31644 17.6314 4.09564 19.3125 5.52899 19.3125H9.10218C9.35081 20.6647 10.5559 21.6875 12 21.6875C13.4441 21.6875 14.6492 20.6647 14.8978 19.3125H18.471C19.9044 19.3125 20.6836 17.6314 19.7591 16.5348L18.7699 15.3626C18.2375 14.7301 17.9453 13.9299 17.9453 13.1032V9.64286C17.9453 6.6216 15.6766 4.12967 12.75 3.77567V3C12.75 2.58579 12.4142 2.25 12 2.25ZM12 20.1875C11.3855 20.1875 10.8511 19.8363 10.6403 19.3125H13.3597C13.1489 19.8363 12.6145 20.1875 12 20.1875ZM7.55469 9.64286C7.55469 7.19733 9.53923 5.21429 12 5.21429C14.4608 5.21429 16.4453 7.19733 16.4453 9.64286V13.1032C16.4453 14.2802 16.8511 15.4213 17.5934 16.3348L18.5826 17.5069C18.7261 17.6797 18.6034 17.8125 18.471 17.8125H5.52899C5.39664 17.8125 5.27389 17.6797 5.41739 17.5069L6.40662 16.3348C7.14895 15.4213 7.55469 14.2802 7.55469 13.1032V9.64286Z"
fill="currentColor"
fillRule="evenodd"
/>
</svg>
)
}