import React from "react";
import {Stack, Text,} from "@chakra-ui/react";
interface FieldProp {
label: string;
spacing: string;
placeholder: string;
}
export interface inputCardProps {
title: string;
onChange: any;
noOfCols: number;
inputs: FieldProp[]
}
interface tagBtnProps {
number: string;
label: string;
}
const FormColDesign = () => {
return (
<>
asad...
{/* {*/}
{/* console.log(e.target.value);*/}
{/* }}*/}
{/* onChnage2={(e: any) => {*/}
{/* console.log(e.target.value);*/}
{/* }}*/}
{/* icon="none"*/}
{/* placeholder1="Enter the title of your button i.e. Redeem"*/}
{/* placeholder2="Enter a hex value #FFFFFF"*/}
{/*/>*/}
>
);
};
export default FormColDesign;