2022-02-18 09:27:55 +00:00
|
|
|
import { createSvgIcon } from "@material-ui/core/utils";
|
2019-08-09 10:26:22 +00:00
|
|
|
import React from "react";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
2019-10-30 14:34:24 +00:00
|
|
|
const QuotationIcon = createSvgIcon(
|
2019-06-19 14:40:52 +00:00
|
|
|
<>
|
|
|
|
<path d="M1.46891 14H5.87564L8.81345 8.4V0H0V8.4H4.40673L1.46891 14ZM13.2202 14H17.6269L20.5647 8.4V0H11.7513V8.4H16.158L13.2202 14Z" />
|
2020-05-14 09:30:32 +00:00
|
|
|
</>,
|
|
|
|
"QuotationIcon"
|
|
|
|
);
|
2019-10-30 14:34:24 +00:00
|
|
|
|
2019-06-19 14:40:52 +00:00
|
|
|
export default QuotationIcon;
|