UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 891 B
import * as React from "react"; function Trophy02Icon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 17a6.5 6.5 0 01-6.5-6.5V4.556c0-.519 0-.778.094-.979a1 1 0 01.483-.483C6.278 3 6.537 3 7.056 3h9.888c.519 0 .778 0 .979.094a1 1 0 01.483.483c.094.201.094.46.094.979V10.5A6.5 6.5 0 0112 17zm0 0v4m5 0H7M22 5v5M2 5v5" })); } const ForwardRef = React.forwardRef(Trophy02Icon); export default ForwardRef;