Checkbox

作者:AatreyuShau0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="notebook-checkbox">
  <input type="checkbox" />
  <span className="checkmark"></span>
  <span className="text">
    <span className="text-content">Lorem Ipsum</span>
    <svg preserveAspectRatio="none" viewBox="0 0 400 20" className="cut-line">
      <path d="M0,10 H400"></path>
    </svg>
  </span>
</label>

<svg height="0" width="0">
  <filter id="handDrawnNoise">
    <feTurbulence
      result="noise"
      numOctaves="8"
      baseFrequency="0.1"
      type="fractalNoise"
    ></feTurbulence>
    <feDisplacementMap
      yChannelSelector="G"
      xChannelSelector="R"
      scale="3"
      in2="noise"
      in="SourceGraphic"
    ></feDisplacementMap>
  </filter>
</svg>
  );
}