@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 788 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var StarHalf = /*#__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: "M14 3.1c-.52 0-1.03.27-1.3.8l-2.69 5.46-6.02.87a1.45 1.45 0 0 0-.8 2.48l4.35 4.24-1.02 6a1.45 1.45 0 0 0 2.1 1.52L14 21.65V3.1Z"
}));
});
StarHalf.displayName = 'StarHalf';
export var StarHalfDimensions = {
height: 28,
width: 28
};