Switch
作者:mrhyddenn♥ 0 点赞MIT
实时预览
源代码
export default function Component() {
return (
<label className="switch">
<div className="round"><input name="onoff" id="onoff" type="checkbox" />
<div className="back"><label htmlFor="onoff" className="but"><span className="on">0</span><span className="off">I</span></label></div>
</div>
</label>
);
}