@douyinfe/semi-icons
Version:
semi icons
24 lines • 846 B
JavaScript
import * as React from 'react';
import { convertIcon } from '../components/Icon';
function SvgComponent(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
viewBox: "0 0 24 24",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
focusable: false,
"aria-hidden": true
}, props), /*#__PURE__*/React.createElement("path", {
d: "m2 6 8.55-4.7a3 3 0 0 1 2.9 0L22 6l-10 5L2 6Z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "m11 12.5-10-5v8.65a3 3 0 0 0 1.66 2.68L11 23V12.5Z",
fill: "currentColor"
}), /*#__PURE__*/React.createElement("path", {
d: "m23 7.5-10 5V23l8.34-4.17A3 3 0 0 0 23 16.15V7.5Z",
fill: "currentColor"
}));
}
const IconComponent = convertIcon(SvgComponent, 'box');
export default IconComponent;