Input 输入框
流光边框 / 简约经典两种样式,通过 className 切换
import "@qingwu-ui/calendar/style.css";
export default function InputDemo() {
return (
<>
<input className="qw-input" type="text" placeholder="流光边框..." />
<input className="qw-input-simple" type="text" placeholder="简约经典..." />
</>
);
}