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

24 lines
1.6 KiB
XML

export default function EditIcon({ className = 'size-6' }: { className?: string }) {
return (
<svg
className={className}
fill="none"
viewBox="0 0 12 12"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.77285 10.834C6.4967 10.834 6.27285 11.0579 6.27285 11.334C6.27285 11.6102 6.4967 11.834 6.77285 11.834H10.7728C11.049 11.834 11.2728 11.6102 11.2728 11.334C11.2728 11.0579 11.049 10.834 10.7728 10.834H6.77285Z"
fill="currentColor"
/>
<path
d="M7.30223 0.883667L7.36227 0.918332C7.88102 1.21781 8.31359 1.46754 8.63033 1.71196C8.96465 1.96996 9.23 2.26609 9.34115 2.68088C9.45229 3.09567 9.37055 3.4848 9.21002 3.87539C9.09859 4.1465 8.93475 4.45116 8.73732 4.79867L8.31378 4.54694L8.30832 4.54373L3.69145 1.87819L3.25969 1.62371C3.45975 1.28299 3.64 0.991965 3.81746 0.762001C4.07546 0.427679 4.37159 0.162327 4.78638 0.0511844C5.20117 -0.059958 5.5903 0.0217785 5.98089 0.182312C6.35094 0.334402 6.78351 0.584161 7.30223 0.883667Z"
fill="currentColor"
/>
<path
d="M2.75874 2.48922L0.44009 6.50516C0.241565 6.84837 0.0845921 7.11974 0.0264351 7.42841C-0.031722 7.73708 0.015736 8.04696 0.0757564 8.43888L0.0919271 8.54481C0.202718 9.27238 0.294038 9.87209 0.431771 10.3269C0.575819 10.8025 0.797256 11.2142 1.23277 11.4656C1.66828 11.7171 2.13553 11.703 2.61945 11.5899C3.08216 11.4818 3.64718 11.261 4.33267 10.9932L4.4325 10.9542C4.80192 10.8103 5.09402 10.6964 5.33226 10.4917C5.5705 10.287 5.72702 10.0154 5.92498 9.67186L8.23814 5.66528L7.80557 5.40817L3.18563 2.74085L2.75874 2.48922Z"
fill="currentColor"
/>
</svg>
)
}