@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 925 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Cube = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M13.85 2.76a6 6 0 0 1 4.3 0l9.93 3.81A3 3 0 0 1 30 9.37v13.26a3 3 0 0 1-1.92 2.8l-9.93 3.81a6 6 0 0 1-4.3 0l-9.93-3.81A3 3 0 0 1 2 22.63V9.37a3 3 0 0 1 1.92-2.8l9.93-3.81Zm-4.46 7.32a1 1 0 1 0-.78 1.84L15 14.66V21a1 1 0 1 0 2 0v-6.34l6.4-2.74a1 1 0 0 0-.8-1.84L16 12.91l-6.6-2.83Z"
}));
});
Cube.displayName = 'Cube';
export var CubeDimensions = {
height: 32,
width: 32
};