saleor-dashboard/src/icons/SiteSettings.tsx

29 lines
2.5 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
export const SiteSettings = createSvgIcon(
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M34.6387 11.9972L33.7134 14.5158L34.3905 15.2663C35.8323 16.8641 36.9274 18.7948 37.5523 20.9335L37.8454 21.9364L40.3256 22.3641V27.8214L37.8454 28.2491L37.5524 29.252C36.9666 31.2566 35.9678 33.0786 34.6575 34.615L34.0222 35.36L34.9932 38.0028L30.0553 40.8475L28.4228 38.897L27.4032 39.1548C26.3148 39.43 25.1752 39.5765 24 39.5765C22.8248 39.5765 21.6852 39.43 20.5968 39.1548L19.5772 38.897L17.9447 40.8475L13.0068 38.0028L13.9778 35.36L13.3425 34.615C12.0322 33.0786 11.0334 31.2566 10.4476 29.252L10.1546 28.2491L7.67442 27.8214L7.67442 22.3641L10.1546 21.9364L10.4477 20.9335C11.0726 18.7948 12.1677 16.8641 13.6095 15.2663L14.2866 14.5158L13.3612 11.9972L18.2992 9.15248L19.9813 11.1624L20.9758 10.9407C21.9487 10.7237 22.9603 10.6092 24 10.6092C25.0397 10.6092 26.0513 10.7237 27.0242 10.9407L28.0187 11.1624L29.7008 9.15248L34.6387 11.9972ZM42 29.2318V20.9537L39.1595 20.4639C38.4629 18.0799 37.2421 15.927 35.6337 14.1445L36.6969 11.2506L29.3188 7L27.3886 9.30636C26.2969 9.06298 25.1631 8.93475 24 8.93475C22.8369 8.93475 21.7031 9.06298 20.6114 9.30636L18.6812 7L11.303 11.2506L12.3663 14.1445C10.7579 15.927 9.53708 18.0799 8.84047 20.4639L6 20.9537V29.2318L8.84043 29.7216C9.49337 31.9562 10.6069 33.9878 12.0685 35.7016L10.9486 38.7495L18.3267 43L20.1863 40.7781C21.4077 41.087 22.6851 41.2509 24 41.2509C25.3149 41.2509 26.5923 41.087 27.8137 40.7781L29.6733 43L37.0514 38.7495L35.9315 35.7016C37.3931 33.9878 38.5066 31.9562 39.1596 29.7216L42 29.2318ZM31.5996 25.0013C31.5996 29.1977 28.1977 32.5996 24.0013 32.5996C19.8049 32.5996 16.403 29.1977 16.403 25.0013C16.403 20.8049 19.8049 17.403 24.0013 17.403C28.1977 17.403 31.5996 20.8049 31.5996 25.0013ZM33.274 25.0013C33.274 30.1225 29.1225 34.274 24.0013 34.274C18.8801 34.274 14.7286 30.1225 14.7286 25.0013C14.7286 19.8801 18.8801 15.7286 24.0013 15.7286C29.1225 15.7286 33.274 19.8801 33.274 25.0013Z"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="4.94118"
y1="7"
x2="37.8615"
y2="47.2508"
gradientUnits="userSpaceOnUse"
>
2019-08-09 11:14:35 +00:00
<stop stopColor="#06847B" />
2019-06-19 14:40:52 +00:00
<stop offset="1" stopColor="#3EE7CD" />
</linearGradient>
</defs>
</>
);
SiteSettings.displayName = "SiteSettings";
export default SiteSettings;