@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 997 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowGrowth = /*#__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: "M17 4a1 1 0 1 1 0-2h4a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0V5.41l-5.8 5.8a1 1 0 0 1-1.4 0L10 8.4l-5.3 5.3a1 1 0 0 1-1.4-1.42l6-6a1 1 0 0 1 1.4 0l2.8 2.8L18.59 4H17zM5 18v3a1 1 0 1 1-2 0v-3a1 1 0 1 1 2 0zm5-4a1 1 0 1 0-2 0v7a1 1 0 1 0 2 0v-7zm4 1a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1zm6-4a1 1 0 1 0-2 0v10a1 1 0 1 0 2 0V11z"
}));
});
ArrowGrowth.displayName = 'ArrowGrowth';
export var ArrowGrowthDimensions = {
height: 24,
width: 24
};