-
Notifications
You must be signed in to change notification settings - Fork 0
/
nice
23 lines (23 loc) · 889 Bytes
/
nice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{/* بخش صندوق، بانک و غیره (حالا در پایین) */}
<div className="simple-view mb-8 flex justify-around items-center">
<div className="text-center">
<Banknote className="w-12 h-12 mb-2 text-green-500" />
<p>صندوق</p>
</div>
<div className="text-center">
<Building2 className="w-12 h-12 mb-2 text-blue-500" />
<p>بانک</p>
</div>
<div className="text-center">
<Building className="w-12 h-12 mb-2 text-gray-500" />
<p>ساختمان</p>
</div>
<div className="text-center">
<Car className="w-12 h-12 mb-2 text-red-500" />
<p>خودرو</p>
</div>
<div className="text-center">
<Warehouse className="w-12 h-12 mb-2 text-yellow-500" />
<p>انبار</p>
</div>
</div>