Checkbox

作者:DaniloMGutavo0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="checkbox-container">
    <input className="custom-checkbox" checked="" type="checkbox" />
    <span className="checkmark"></span>
</label>
  );
}