import { createSvgIcon } from "@material-ui/core/utils";
import React from "react";

export const CheckboxIcon = createSvgIcon(
  <rect x="5" y="5" width="14" height="14" stroke="currentColor" fill="none" />,
  "CheckboxIcon"
);
