mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-17 01:05:21 -05:00
* More global css * Migrate 404.tsx * Header.tsx partial * links.tsx * 500.tsx * AbilityIcon.tsx * BuildStats.tsx progress * about.tsx * admin.tsx * Adjust button border * Stylelint
14 lines
307 B
TypeScript
14 lines
307 B
TypeScript
import styles from "./Input.module.css";
|
|
import { DetailedHTMLProps, InputHTMLAttributes } from "react";
|
|
|
|
const Input = (
|
|
props: DetailedHTMLProps<
|
|
InputHTMLAttributes<HTMLInputElement>,
|
|
HTMLInputElement
|
|
>
|
|
) => {
|
|
return <input className={styles.input} {...props} />;
|
|
};
|
|
|
|
export default Input;
|