@geist-ui/react
Version:
Modern and minimalist React UI library.
20 lines (18 loc) • 580 B
JavaScript
import React from 'react';
var RatingIcon = function RatingIcon() {
return /*#__PURE__*/React.createElement("svg", {
viewBox: "0 0 24 24",
width: "24",
height: "24",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
shapeRendering: "geometricPrecision"
}, /*#__PURE__*/React.createElement("path", {
d: "M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"
}));
};
RatingIcon.displayName = 'GeistRatingIcon';
export default RatingIcon;