mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
14 lines
No EOL
393 B
JavaScript
14 lines
No EOL
393 B
JavaScript
import React from 'react';
|
|
export function StarIcon() {
|
|
return /*#__PURE__*/React.createElement("svg", {
|
|
width: "20",
|
|
height: "20",
|
|
viewBox: "0 0 20 20"
|
|
}, /*#__PURE__*/React.createElement("path", {
|
|
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",
|
|
stroke: "currentColor",
|
|
fill: "none",
|
|
fillRule: "evenodd",
|
|
strokeLinejoin: "round"
|
|
}));
|
|
} |