Files
rahavard/components/UserOrders.js

57 lines
3.6 KiB
JavaScript
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import UserOrdes from "./UserOrders"
export default function UserOrders(){
return(
<table class="w-max mt-6 mb-12 ">
<thead className=''>
<tr className='pb-4'>
<th className='text-gray-600 pl-52 pb-4 font-[5]'>شماره سفارش</th>
<th className='text-gray-600 pl-52 pb-4 font-[5]'>تاریخ و ساعت</th>
<th className='text-gray-600 pl-52 pb-4 font-[5]'>قیمت کل</th>
<th className='text-gray-600 pl-52 pb-4 font-[5]'> وضعیت</th>
</tr>
</thead>
<tbody className=''>
<tr className='h-20 border-t'>
<td className='font-[5]'>۷۵۲۰۸۷۵</td>
<td className='font-[5]'>۱۴۰۲/۰۶/۱۳ - ۱۵:۲۲</td>
<td className='font-[5]'> ۲,۱۰۴,۰۰۰ تومان</td>
<td>
<span className='p-1 rounded border border-green-600 text-green-600 text-sm font-[5] ml-28'> ارسال شده</span>
</td>
<td>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.0003 20.67C14.8103 20.67 14.6203 20.6 14.4703 20.45L7.95027 13.93C6.89027 12.87 6.89027 11.13 7.95027 10.07L14.4703 3.55002C14.7603 3.26002 15.2403 3.26002 15.5303 3.55002C15.8203 3.84002 15.8203 4.32002 15.5303 4.61002L9.01027 11.13C8.53027 11.61 8.53027 12.39 9.01027 12.87L15.5303 19.39C15.8203 19.68 15.8203 20.16 15.5303 20.45C15.3803 20.59 15.1903 20.67 15.0003 20.67Z" fill="#292D32"/>
</svg>
</td>
</tr>
<tr className='h-20 border-t'>
<td className='font-[5]'>۷۵۲۰۸۷۵</td>
<td className='font-[5]'>۱۴۰۲/۰۶/۱۳ - ۱۵:۲۲</td>
<td className='font-[5]'> ۲,۱۰۴,۰۰۰ تومان</td>
<td>
<span className='p-1 rounded border border-green-600 text-green-600 text-sm font-[5] ml-28'> ارسال شده</span>
</td>
<td>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.0003 20.67C14.8103 20.67 14.6203 20.6 14.4703 20.45L7.95027 13.93C6.89027 12.87 6.89027 11.13 7.95027 10.07L14.4703 3.55002C14.7603 3.26002 15.2403 3.26002 15.5303 3.55002C15.8203 3.84002 15.8203 4.32002 15.5303 4.61002L9.01027 11.13C8.53027 11.61 8.53027 12.39 9.01027 12.87L15.5303 19.39C15.8203 19.68 15.8203 20.16 15.5303 20.45C15.3803 20.59 15.1903 20.67 15.0003 20.67Z" fill="#292D32"/>
</svg>
</td>
</tr>
<tr className='h-20 border-t'>
<td className='font-[5]'>۷۵۲۰۸۷۵</td>
<td className='font-[5]'>۱۴۰۲/۰۶/۱۳ - ۱۵:۲۲</td>
<td className='font-[5]'> ۲,۱۰۴,۰۰۰ تومان</td>
<td>
<span className='p-1 rounded border border-green-600 text-green-600 text-sm font-[5] ml-28'> ارسال شده</span>
</td>
<td>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.0003 20.67C14.8103 20.67 14.6203 20.6 14.4703 20.45L7.95027 13.93C6.89027 12.87 6.89027 11.13 7.95027 10.07L14.4703 3.55002C14.7603 3.26002 15.2403 3.26002 15.5303 3.55002C15.8203 3.84002 15.8203 4.32002 15.5303 4.61002L9.01027 11.13C8.53027 11.61 8.53027 12.39 9.01027 12.87L15.5303 19.39C15.8203 19.68 15.8203 20.16 15.5303 20.45C15.3803 20.59 15.1903 20.67 15.0003 20.67Z" fill="#292D32"/>
</svg>
</td>
</tr>
</tbody>
</table>
)
}