Checkbox

作者:ahmed_89750 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="gl-checkbox">
  <input className="gl-checkbox__input" type="checkbox" />
  <span className="gl-checkbox__box">
    <svg
      className="gl-checkbox__check"
      viewBox="0 0 24 24"
      fill="none"
      stroke="currentColor"
      stroke-width="3"
    >
      <polyline points="20 6 9 17 4 12"></polyline>
    </svg>
  </span>
  <span className="gl-checkbox__label">Accept terms &amp; conditions</span>
</label>
  );
}