aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/SubmitButton.tsx
blob: 3c0d67c39c90066d69707978d01b7854700a26dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react";

type ButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement>;

export default function SubmitButton(props: ButtonProps) {
	return (
		<button
			{...props}
			className="text-lg text-white bg-sky-600 px-4 py-2 rounded-sm transition duration-300 hover:bg-sky-500 focus:ring-3 focus:ring-sky-400 focus:outline-hidden"
		/>
	);
}