Checkbox

作者:Bodyhc0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <div className="checkbox-wrapper-16">
  <label className="checkbox-wrapper">
    <input className="checkbox-input" type="checkbox" />
    <span className="checkbox-tile">
      <span className="checkbox-icon">
        <svg viewBox="0 0 256 256" fill="currentColor" height="192" width="192" xmlns="http://www.w3.org/2000/svg">
          <rect fill="none" height="256" width="256"></rect>
          <polygon stroke-width="12" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" points="72 40 184 40 240 104 128 224 16 104 72 40"></polygon>
          <polygon stroke-width="12" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" points="177.091 104 128 224 78.909 104 128 40 177.091 104"></polygon>
          <line stroke-width="12" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="none" y2="104" x2="240" y1="104" x1="16"></line>
        </svg>
      </span>
      <span className="checkbox-label">Sketch</span>
    </span>
  </label>
</div>
  );
}