Extract admin dashboard from ghabilee-frontend2 into a dedicated Next.js app for backoffice.ghabilee.ir (no SEO indexing / Clarity).
39 lines
2.8 KiB
XML
39 lines
2.8 KiB
XML
export default function CommentIcon({ className = 'size-6' }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g clipPath="url(#clip0_410_1802)">
|
|
<path
|
|
d="M23.9997 11.2471C23.855 8.9071 23.0288 6.66059 21.6229 4.7845C20.2169 2.90841 18.2927 1.48477 16.0874 0.68907C13.8821 -0.106627 11.4922 -0.239591 9.21222 0.306571C6.93229 0.852733 4.86201 2.05415 3.25662 3.76269C1.65122 5.47124 0.580905 7.61224 0.177606 9.92173C-0.225693 12.2312 0.0556603 14.6083 0.98698 16.7598C1.9183 18.9113 3.45887 20.7433 5.41877 22.0298C7.37867 23.3164 9.67222 24.0013 12.0167 24.0001H18.9997C20.3253 23.9988 21.5963 23.4715 22.5337 22.5341C23.4711 21.5968 23.9983 20.3258 23.9997 19.0001V11.2471ZM21.9997 19.0001C21.9997 19.7957 21.6836 20.5588 21.121 21.1214C20.5584 21.684 19.7953 22.0001 18.9997 22.0001H12.0167C10.6056 21.9994 9.21051 21.7014 7.92236 21.1254C6.63421 20.5494 5.48194 19.7083 4.54066 18.6571C3.59484 17.6063 2.88459 16.3655 2.45756 15.0179C2.03052 13.6702 1.89656 12.2468 2.06466 10.8431C2.3301 8.62902 3.32485 6.56626 4.89211 4.98C6.45936 3.39374 8.50997 2.37419 10.7207 2.08207C11.1519 2.02803 11.5861 2.00064 12.0207 2.00007C14.3511 1.99372 16.6095 2.80798 18.3997 4.30008C19.4452 5.16902 20.3034 6.24123 20.9222 7.45171C21.541 8.66218 21.9076 9.98572 21.9997 11.3421V19.0001Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M8 8.99975H12C12.2652 8.99975 12.5196 8.8944 12.7071 8.70686C12.8946 8.51932 13 8.26497 13 7.99975C13 7.73454 12.8946 7.48018 12.7071 7.29265C12.5196 7.10511 12.2652 6.99976 12 6.99976H8C7.73478 6.99976 7.48043 7.10511 7.29289 7.29265C7.10536 7.48018 7 7.73454 7 7.99975C7 8.26497 7.10536 8.51932 7.29289 8.70686C7.48043 8.8944 7.73478 8.99975 8 8.99975Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M16 11.0002H8C7.73478 11.0002 7.48043 11.1056 7.29289 11.2931C7.10536 11.4807 7 11.735 7 12.0002C7 12.2655 7.10536 12.5198 7.29289 12.7074C7.48043 12.8949 7.73478 13.0003 8 13.0003H16C16.2652 13.0003 16.5196 12.8949 16.7071 12.7074C16.8946 12.5198 17 12.2655 17 12.0002C17 11.735 16.8946 11.4807 16.7071 11.2931C16.5196 11.1056 16.2652 11.0002 16 11.0002Z"
|
|
fill="currentColor"
|
|
/>
|
|
<path
|
|
d="M16 15H8C7.73478 15 7.48043 15.1054 7.29289 15.2929C7.10536 15.4804 7 15.7348 7 16C7 16.2652 7.10536 16.5196 7.29289 16.7071C7.48043 16.8947 7.73478 17 8 17H16C16.2652 17 16.5196 16.8947 16.7071 16.7071C16.8946 16.5196 17 16.2652 17 16C17 15.7348 16.8946 15.4804 16.7071 15.2929C16.5196 15.1054 16.2652 15 16 15Z"
|
|
fill="currentColor"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_410_1802">
|
|
<rect
|
|
fill="white"
|
|
height="24"
|
|
width="24"
|
|
/>
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
}
|