@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.09 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var DismissCircle = /*#__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 4a20 20 0 1 1 0 40 20 20 0 0 1 0-40Zm-6.12 12.12-.1-.1a1.25 1.25 0 0 0-1.56 0l-.1.1-.1.1c-.36.45-.36 1.1 0 1.56l.1.1L22.23 24l-6.11 6.12-.1.1c-.36.45-.36 1.1 0 1.56l.1.1.1.1c.45.36 1.1.36 1.56 0l.1-.1L24 25.77l6.12 6.11.1.1c.45.36 1.1.36 1.56 0l.1-.1.1-.1c.36-.45.36-1.1 0-1.56l-.1-.1L25.77 24l6.11-6.12.1-.1c.36-.45.36-1.1 0-1.56l-.1-.1-.1-.1a1.25 1.25 0 0 0-1.56 0l-.1.1L24 22.23l-6.12-6.11-.1-.1.1.1Z"
}));
});
DismissCircle.displayName = 'DismissCircle';
export var DismissCircleDimensions = {
height: 48,
width: 48
};