saleor-dashboard/src/icons/LocalShipping.tsx

13 lines
820 B
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 LocalShipping = createSvgIcon(
<>
<rect width="24" height="24" fillOpacity="0" />
<rect width="22" height="16" fillOpacity="0" transform="translate(1 4)" />
<path d="M20 8H17V4H3C1.9 4 1 4.9 1 6V17H3C3 18.66 4.34 20 6 20C7.66 20 9 18.66 9 17H15C15 18.66 16.34 20 18 20C19.66 20 21 18.66 21 17H23V12L20 8ZM19.5 9.5L21.46 12H17V9.5H19.5ZM6 18C5.45 18 5 17.55 5 17C5 16.45 5.45 16 6 16C6.55 16 7 16.45 7 17C7 17.55 6.55 18 6 18ZM8.22 15C7.67 14.39 6.89 14 6 14C5.11 14 4.33 14.39 3.78 15H3V6H15V15H8.22ZM18 18C17.45 18 17 17.55 17 17C17 16.45 17.45 16 18 16C18.55 16 19 16.45 19 17C19 17.55 18.55 18 18 18Z" />
</>
);
LocalShipping.displayName = "LocalShipping";
export default LocalShipping;