8 lines
338 B
TypeScript
8 lines
338 B
TypeScript
import { InputHTMLAttributes } from "react";
|
|
|
|
export default function LineInput(props: InputHTMLAttributes<HTMLInputElement>) {
|
|
return (
|
|
<input type="text" className="border-b-2 border-b-neutral-600 focus:border-b-neutral-500 bg-neutral-800/30 p-2 my-2 rounded-t-md text-lg focus:outline-none font-mono w-full" {...props} />
|
|
);
|
|
}
|