Checkbox

作者:adamgiebl0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="checkbox" htmlFor="checkbox1">
  <span className="label">Checkbox</span>
  <input checked="" id="checkbox1" type="checkbox" />
  <span className="checkmark"></span>
</label>
  );
}