@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 799 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Comma = /*#__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: "M14.2 12.34a4 4 0 1 1 1.77-3.87c.36 1.8.5 3.95-.21 5.9-.77 2.09-2.47 3.8-5.5 4.6a1 1 0 0 1-.51-1.94c2.46-.64 3.6-1.93 4.13-3.35.16-.43.26-.88.32-1.34Z"
}));
});
Comma.displayName = 'Comma';
export var CommaDimensions = {
height: 24,
width: 24
};