@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 840 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowDown = /*#__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: "M25.5 5.25a1.5 1.5 0 0 0-3 0v31.84l-12.18-12.4a1.5 1.5 0 1 0-2.14 2.11l14.75 15a1.48 1.48 0 0 0 1.07.45 1.5 1.5 0 0 0 1.07-.45l14.75-15a1.5 1.5 0 1 0-2.14-2.1L25.5 37.09V5.25Z"
}));
});
ArrowDown.displayName = 'ArrowDown';
export var ArrowDownDimensions = {
height: 48,
width: 48
};