pankod/refine

View on GitHub
packages/devtools-ui/src/components/icons/options.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

export const OptionsIcon = (props: React.SVGProps<SVGSVGElement>) => (
  <svg
    width={20}
    height={20}
    viewBox="0 0 20 20"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
    {...props}
  >
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M10.5462 7.5C10.2687 8.57827 9.2899 9.375 8.125 9.375C6.9601 9.375 5.98129 8.57827 5.70376 7.5H4.375C4.02982 7.5 3.75 7.22018 3.75 6.875C3.75 6.52982 4.02982 6.25 4.375 6.25H5.70376C5.98129 5.17173 6.9601 4.375 8.125 4.375C9.2899 4.375 10.2687 5.17173 10.5462 6.25H15.625C15.9702 6.25 16.25 6.52982 16.25 6.875C16.25 7.22018 15.9702 7.5 15.625 7.5H10.5462ZM9.375 6.875C9.375 7.56536 8.81536 8.125 8.125 8.125C7.43464 8.125 6.875 7.56536 6.875 6.875C6.875 6.18464 7.43464 5.625 8.125 5.625C8.81536 5.625 9.375 6.18464 9.375 6.875Z"
      fill="currentColor"
    />
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M11.875 15.625C10.7101 15.625 9.73129 14.8283 9.45376 13.75H4.375C4.02982 13.75 3.75 13.4702 3.75 13.125C3.75 12.7798 4.02982 12.5 4.375 12.5H9.45376C9.73129 11.4217 10.7101 10.625 11.875 10.625C13.0399 10.625 14.0187 11.4217 14.2962 12.5H15.625C15.9702 12.5 16.25 12.7798 16.25 13.125C16.25 13.4702 15.9702 13.75 15.625 13.75H14.2962C14.0187 14.8283 13.0399 15.625 11.875 15.625ZM11.875 14.375C11.1846 14.375 10.625 13.8154 10.625 13.125C10.625 12.4346 11.1846 11.875 11.875 11.875C12.5654 11.875 13.125 12.4346 13.125 13.125C13.125 13.8154 12.5654 14.375 11.875 14.375Z"
      fill="currentColor"
    />
    <path
      fillRule="evenodd"
      clipRule="evenodd"
      d="M6 0C2.68629 0 0 2.68629 0 6V14C0 17.3137 2.68629 20 6 20H14C17.3137 20 20 17.3137 20 14V6C20 2.68629 17.3137 0 14 0H6ZM14 1.25H6C3.37665 1.25 1.25 3.37665 1.25 6V14C1.25 16.6234 3.37665 18.75 6 18.75H14C16.6234 18.75 18.75 16.6234 18.75 14V6C18.75 3.37665 16.6234 1.25 14 1.25Z"
      fill="currentColor"
    />
  </svg>
);