StarIcon.js 393 B

1234567891011121314
  1. import React from 'react';
  2. export function StarIcon() {
  3. return /*#__PURE__*/React.createElement("svg", {
  4. width: "20",
  5. height: "20",
  6. viewBox: "0 0 20 20"
  7. }, /*#__PURE__*/React.createElement("path", {
  8. d: "M10 14.2L5 17l1-5.6-4-4 5.5-.7 2.5-5 2.5 5 5.6.8-4 4 .9 5.5z",
  9. stroke: "currentColor",
  10. fill: "none",
  11. fillRule: "evenodd",
  12. strokeLinejoin: "round"
  13. }));
  14. }