@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 815 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Alert = /*#__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 4A15 15 0 0 0 9 19v8.49l-2.8 6.35A2.25 2.25 0 0 0 8.25 37h31.5a2.25 2.25 0 0 0 2.05-3.16L39 27.5V19A15 15 0 0 0 24 4Zm0 40a6 6 0 0 1-5.92-5h11.84A6 6 0 0 1 24 44Z"
}));
});
Alert.displayName = 'Alert';
export var AlertDimensions = {
height: 48,
width: 48
};