8 lines
404 B
JavaScript
8 lines
404 B
JavaScript
|
import React from 'react';
|
||
|
import createSvgIcon from './utils/createSvgIcon';
|
||
|
export default createSvgIcon(React.createElement(React.Fragment, null, React.createElement("path", {
|
||
|
fill: "none",
|
||
|
d: "m0 0h24v24H0V0z"
|
||
|
}), React.createElement("path", {
|
||
|
d: "M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z"
|
||
|
})), 'TextRotationDownOutlined');
|