LocChat/client/components/common/input.jsx

4 lines
110 B
React
Raw Normal View History

2021-11-23 16:04:12 -05:00
export const Input = (props) => {
2022-03-31 00:15:20 -04:00
return <input className="border-2 rounded-lg p-1 input" {...props} />;
2021-11-23 16:04:12 -05:00
};