UNPKG

@metamask/design-system-react

Version:
7 lines 572 B
import * as React from "react"; import { forwardRef } from "react"; const SvgStar = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("path", { d: "m8.85 16.825 3.15-1.9 3.15 1.925-.825-3.6 2.775-2.4-3.65-.325-1.45-3.4-1.45 3.375-3.65.325 2.775 2.425zM5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625 7.2.625-5.45 4.725L18.175 21 12 17.275z" })); const ForwardRef = forwardRef(SvgStar); export default ForwardRef; //# sourceMappingURL=Star.mjs.map