@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 797 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Rhombus = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12 11.04A4.75 4.75 0 0 1 16.45 8h23.8a4.75 4.75 0 0 1 4.44 6.46L36 36.96A4.75 4.75 0 0 1 31.56 40H7.76a4.75 4.75 0 0 1-4.44-6.46l8.69-22.5Z"
}));
});
Rhombus.displayName = 'Rhombus';
export var RhombusDimensions = {
height: 48,
width: 48
};