musikspider/components/Input.tsx
2023-04-12 14:12:20 +03:00

13 lines
301 B
TypeScript

import { JSX } from "preact";
export default function Input(props: JSX.HTMLAttributes<HTMLInputElement>) {
return (
<input
{...props}
class={`px-3 py-2 bg-white rounded border(gray-500 2) disabled:(opacity-50 cursor-not-allowed) ${
props.class ?? ""
}`}
/>
);
}