Files
acad-ia-2/src/components/ui/SubmitButton.tsx
2025-12-22 14:24:53 -06:00

16 lines
311 B
TypeScript

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>
)
}