first commit

This commit is contained in:
2026-02-14 16:15:31 +05:30
commit 8f4cf07ec0
197 changed files with 17228 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
const Input = ({ label, className = "", ...props }) => {
return (
<div className="flex flex-col gap-1">
{label && <label className="text-sm font-medium text-gray-600">{label}</label>}
<input
{...props}
className={`border border-gray-300 rounded-lg px-3 py-2
focus:outline-none focus:ring-2 focus:ring-black
${className}`}
/>
</div>
);
};
export default Input;