gluestick/src/components/HugeSubmit.tsx
2023-04-26 18:21:28 -07:00

8 lines
263 B
TypeScript

import React, { InputHTMLAttributes } from "react";
import styles from "./HugeSubmit.module.css";
export default function HugeSubmit(
props: InputHTMLAttributes<HTMLInputElement>
) {
return <input type="submit" className={styles.hugeSubmit} {...props} />;
}