@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 978 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 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M13.4 2.51a3.75 3.75 0 0 0-2.8 0L3.1 5.55c-.67.27-1.1.91-1.1 1.62v9.66c0 .7.43 1.35 1.1 1.62l7.5 3.04c.9.36 1.9.36 2.8 0l7.5-3.04c.67-.27 1.1-.91 1.1-1.62V7.17c0-.7-.43-1.35-1.1-1.62l-7.5-3.04zM6.06 7.98a.75.75 0 0 1 .97-.43L12 9.44l4.98-1.9a.75.75 0 1 1 .54 1.41l-4.77 1.8v5.5a.75.75 0 0 1-1.5 0v-5.5l-4.77-1.8a.75.75 0 0 1-.43-.97z"
}));
});
Cube.displayName = 'Cube';
export var CubeDimensions = {
height: 24,
width: 24
};