design of the map component functional

This commit is contained in:
Quentin Roussel
2024-03-24 15:10:51 +01:00
parent b274bd4ad5
commit 2478ee32ec
8 changed files with 79 additions and 17 deletions

View File

@@ -0,0 +1,5 @@
export default function Button({ children, ...props }) {
return (<button {...props} className="bg-blue-600 hover:bg-blue-500 ease-out duration-200 text-white w-full p-4 shadow-sm rounded">
{children}
</button>)
}

View File

@@ -0,0 +1,7 @@
import React from 'react'
export default function TextInput({...props}) {
return (
<input {...props} type="text" className="block w-full p-4 rounded text-center ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600" />
)
}