Switch

作者:gharsh110320000 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="switch">
  <input type="checkbox" />
  <span className="slider"></span>
</label>
  );
}