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

14 lines
428 B
TypeScript

export default function BookmarkFillIcon({ className = 'size-6' }: { className?: string }) {
return (
<svg
aria-hidden="true"
className={className}
fill="currentColor"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M6 2.25A2.75 2.75 0 0 0 3.25 5v16a.75.75 0 0 0 1.16.628L12 16.66l7.59 4.968A.75.75 0 0 0 20.75 21V5A2.75 2.75 0 0 0 18 2.25H6Z" />
</svg>
)
}