Se agrega ruta de login
This commit is contained in:
15
src/components/ui/SubmitButton.tsx
Normal file
15
src/components/ui/SubmitButton.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
interface Props {
|
||||
text?: string
|
||||
}
|
||||
|
||||
export function SubmitButton({ text = 'Iniciar sesión' }: Props) {
|
||||
return (
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full bg-[#7b0f1d] text-white py-2 rounded-lg
|
||||
font-semibold hover:opacity-90 transition"
|
||||
>
|
||||
{text}
|
||||
</button>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user