@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 769 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 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M7 13a9 9 0 0 1 18 0v3.8l1.93 4.83A1 1 0 0 1 26 23H6a1 1 0 0 1-.93-1.37L7 16.8V13zm5.12 12a3.99 3.99 0 0 0 7.76 0h-7.76z"
}));
});
Alert.displayName = 'Alert';
export var AlertDimensions = {
height: 32,
width: 32
};