You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
1.2 KiB

import React, {useState, useEffect} from "react";
import Input from "../../../components/input/signUpInput";
const Metrics = () => {
const inputs = [
'طول',
'عرض',
'ارتفاع',
'وزن',
]
return(
<div className="w-1/3 bg-white border mx-2 rounded-lg border-grayE0 flex flex-col py-6">
<h1 className="text-blue3A text-lg font-bold w-full text-right px-4 mb-6 border-r-4 border-blue65">
وزن و ابعاد محصول
</h1>
<div className="flex flex-wrap px-4">
{
inputs.map(
(item, index) => (
<div className="w-1/2 p-2">
{/* <input type="number" placeholder={item} className="bg-white border border-grayE0 h-14 w-full outline-none px-2 rounded-md" />7
*/}
<Input type="number" title={item} className="w-full" id={index} gapSize="12" align="w-full" borderType="rounded" direction='rtl'/>
</div>
)
)
}
</div>
</div>
)
}
export default Metrics;