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

86 lines
3.4 KiB
XML

export default function AngleDownIcon({ className = 'size-10' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M29.1211 4.76386C28.8456 4.52901 28.5224 4.35684 28.1737 4.25929C27.8251 4.16173 27.4594 4.14111 27.1021 4.19886L6.35378 7.54542C5.27695 7.71526 4.29645 8.26485 3.58962 9.09479C2.88278 9.92472 2.49629 10.9802 2.50003 12.0703V14.1667C2.50003 14.3877 2.58783 14.5997 2.74411 14.7559C2.9004 14.9122 3.11237 15 3.33339 15H29.1667C29.3877 15 29.5997 14.9122 29.7559 14.7559C29.9122 14.5997 30 14.3877 30 14.1667V6.66714C30.0003 6.30513 29.9219 5.94739 29.7701 5.61873C29.6183 5.29008 29.3969 4.99837 29.1211 4.76386Z"
fill="url(#paint0_linear_699_3733)"
/>
<path
d="M31.6666 10.8334H5C4.33718 10.8341 3.70172 11.0977 3.23303 11.5664C2.76435 12.0351 2.50072 12.6706 2.5 13.3334V31.6667C2.50136 32.7713 2.94078 33.8303 3.72188 34.6114C4.50298 35.3925 5.56199 35.832 6.66664 35.8334H31.6666C32.7713 35.832 33.8303 35.3926 34.6115 34.6115C35.3926 33.8303 35.832 32.7713 35.8334 31.6667V15C35.8321 13.8953 35.3927 12.8362 34.6116 12.0551C33.8304 11.274 32.7713 10.8346 31.6666 10.8334Z"
fill="url(#paint1_linear_699_3733)"
/>
<path
d="M35.8336 17.5H25.0002C23.8983 17.5048 22.8431 17.9459 22.0656 18.7268C21.2881 19.5076 20.8516 20.5647 20.8516 21.6667C20.8516 22.7686 21.2881 23.8257 22.0656 24.6066C22.8431 25.3875 23.8983 25.8286 25.0002 25.8334H35.8336C36.2755 25.8329 36.6991 25.6571 37.0116 25.3446C37.324 25.0322 37.4998 24.6085 37.5002 24.1666V19.1666C37.4998 18.7248 37.324 18.3011 37.0116 17.9887C36.6991 17.6762 36.2755 17.5005 35.8336 17.5Z"
fill="url(#paint2_linear_699_3733)"
/>
<path
d="M25.0006 23.3333C25.9211 23.3333 26.6673 22.5871 26.6673 21.6666C26.6673 20.7462 25.9211 20 25.0006 20C24.0802 20 23.334 20.7462 23.334 21.6666C23.334 22.5871 24.0802 23.3333 25.0006 23.3333Z"
fill="url(#paint3_linear_699_3733)"
/>
<defs>
<linearGradient
gradientUnits="userSpaceOnUse"
id="paint0_linear_699_3733"
x1="4.24112"
x2="29.6682"
y1="9.58354"
y2="9.58354"
>
<stop stopColor="#CCCCCC" />
<stop
offset="1"
stopColor="#919191"
/>
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="paint1_linear_699_3733"
x1="5.14508"
x2="36.2273"
y1="23.3334"
y2="23.3334"
>
<stop stopColor="white" />
<stop
offset="1"
stopColor="#DDDDDD"
/>
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="paint2_linear_699_3733"
x1="22.171"
x2="37.6966"
y1="21.6666"
y2="21.6666"
>
<stop stopColor="#FED200" />
<stop
offset="1"
stopColor="#F59815"
/>
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="paint3_linear_699_3733"
x1="23.293"
x2="26.5759"
y1="21.6666"
y2="21.6666"
>
<stop stopColor="white" />
<stop
offset="1"
stopColor="#F2EBE6"
/>
</linearGradient>
</defs>
</svg>
)
}