@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 998 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Balloon = /*#__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: "M5 9a7 7 0 0 1 14 0c0 2.03-.67 4.24-1.85 5.96a6.58 6.58 0 0 1-4.4 2.99v.3c0 .41.34.75.75.75h3.25c1.24 0 2.25 1 2.25 2.25v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 0-.75-.75H13.5c-1.24 0-2.25-1-2.25-2.25v-.3a6.58 6.58 0 0 1-4.4-3A10.88 10.88 0 0 1 5 9Zm7.92-3.9a.75.75 0 0 0-.34 1.47 2.5 2.5 0 0 1 1.85 1.85.75.75 0 1 0 1.46-.35 4 4 0 0 0-2.97-2.96Z"
}));
});
Balloon.displayName = 'Balloon';
export var BalloonDimensions = {
height: 24,
width: 24
};