Checkbox

作者:Gautammsharma0 点赞MIT

实时预览

源代码

export default function Component() {
  return (
    <label className="material-checkbox">
        <input type="checkbox" />
        <span className="checkmark"></span>
        Checkbox Label
      </label>
  );
}