@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 798 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Ribbon = /*#__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: "M10 21.81V29a1 1 0 0 0 1.51.86l4.49-2.7 4.49 2.7A1 1 0 0 0 22 29v-7.19a11.45 11.45 0 0 1-12 0zm12-1.8a9.96 9.96 0 0 1-12.36-.3A10 10 0 1 1 22 20z"
}));
});
Ribbon.displayName = 'Ribbon';
export var RibbonDimensions = {
height: 32,
width: 32
};