saleor-dashboard/src/icons/ShippingMethods.tsx

29 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
import * as React from "react";
export const ShippingMethods = createSvgIcon(
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M6 6H32.4V17.04H42V35.6776L35.6776 42H12.72V23.8424L14.2424 22.32H6V6ZM30.48 9.02192V17.04H19.5224L16.1624 20.4H7.92V8.77191L19.4404 14.7625L30.48 9.02192ZM28.4374 7.92H10.4434L19.4404 12.5984L28.4374 7.92ZM17.04 22.32H16.9576L15.9976 23.28H34.4025L38.7225 18.96H20.3176L17.04 22.2376V22.32ZM35.28 25.1178L40.08 20.3178V34.8824L35.28 39.6824V25.1178ZM14.64 25.2V40.08H33.36V25.2H14.64ZM22.8 33.84H30V31.92H22.8V33.84ZM22.8 37.2H28.56V35.28H22.8V37.2Z"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="6"
y1="6"
x2="45.6"
y2="47.1429"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#13BEBB" />
<stop offset="1" stopColor="#3EE7CD" />
</linearGradient>
</defs>
</>
);
ShippingMethods.displayName = "ShippingMethods";
export default ShippingMethods;