@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 914 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Pill = /*#__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 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M15.78 3.74a6 6 0 0 1 8.48 8.5L12.22 24.26a6 6 0 0 1-8.48-8.5L15.78 3.74zm1.93 12.91 5.49-5.48a4.5 4.5 0 0 0-6.36-6.36l-5.5 5.48 6.37 6.36zm-5.93 4.63a.75.75 0 1 0-1.06-1.06L8.74 22.2c-.4.4-1.07.4-1.48 0l-.48-.48a.75.75 0 0 0-1.06 1.06l.48.48c1 1 2.6 1 3.6 0l1.98-1.98z"
}));
});
Pill.displayName = 'Pill';
export var PillDimensions = {
height: 28,
width: 28
};