@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 931 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Drop = /*#__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: "M24 4c.33 0 .65.13.88.37l.24.23a68.22 68.22 0 0 1 7.17 8.23c3.13 4.3 6.21 9.88 6.21 15.42 0 5.38-1.6 9.36-4.31 12C31.49 42.85 27.83 44 24 44c-3.83 0-7.48-1.14-10.19-3.76-2.71-2.63-4.31-6.61-4.31-11.99 0-5.54 3.01-11.06 6.11-15.33 2.9-3.98 6-7.06 7.24-8.29l.27-.26c.23-.24.55-.37.88-.37z"
}));
});
Drop.displayName = 'Drop';
export var DropDimensions = {
height: 48,
width: 48
};