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

18 lines
1.2 KiB
XML

export default function QuestionMarkIcon({ className = 'size-6' }) {
return (
<svg
className={className}
fill="none"
height="14"
viewBox="0 0 8 14"
width="8"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.14551 1.9248L6.23145 2.96191C5.58105 1.95996 4.7168 1.45898 3.63867 1.45898C3.1875 1.45898 2.76562 1.54395 2.37305 1.71387C1.98633 1.87793 1.67285 2.10059 1.43262 2.38184C1.19238 2.65723 1.06641 2.95898 1.05469 3.28711L1.56445 3.92871C2.12695 4.64941 2.5752 5.2793 2.90918 5.81836C3.24902 6.35156 3.50684 6.86133 3.68262 7.34766C3.86426 7.83398 3.99316 8.36719 4.06934 8.94727L2.96191 9.58008C2.8916 8.83594 2.75098 8.18848 2.54004 7.6377C2.3291 7.08691 2.08301 6.60352 1.80176 6.1875C1.52051 5.77148 1.23926 5.39355 0.958008 5.05371C0.670898 4.70215 0.439453 4.37988 0.263672 4.08691C0.0878906 3.78809 0 3.47461 0 3.14648C0 2.53125 0.166992 1.98926 0.500977 1.52051C0.84082 1.0459 1.29199 0.673828 1.85449 0.404297C2.41699 0.134766 3.03809 0 3.71777 0C5.19434 0 6.33691 0.641602 7.14551 1.9248ZM3.22559 11.2324C3.7002 11.4141 4.19531 11.7656 4.71094 12.2871L3.66504 13.7549C3.19629 13.3447 2.7041 12.9961 2.18848 12.709L3.22559 11.2324Z"
fill="currentColor"
/>
</svg>
)
}