Switch
作者:Madflows♥ 0 点赞MIT
实时预览
源代码
export default function Component() {
return (
<div className="toggle-switch">
<label className="switch-label">
<input type="checkbox" className="checkbox" />
<span className="slider"></span>
</label>
</div>
);
}