@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.42 kB
JavaScript
import * as React from "react";
function CodepenIcon({
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 9l-7.936 5.158c-.688.447-1.032.671-1.151.955a1 1 0 000 .774M12 9l7.936 5.158c.688.447 1.032.671 1.151.955a1 1 0 010 .774M12 9V2.5M12 15L4.064 9.84c-.688-.447-1.032-.67-1.151-.954a1 1 0 010-.774M12 15l7.936-5.159c.688-.447 1.032-.67 1.151-.954a1 1 0 000-.774M12 15v6.5m9.272-5.527l-8.4 5.46c-.316.205-.473.308-.643.348a1 1 0 01-.457 0c-.17-.04-.328-.143-.644-.348l-8.4-5.46c-.266-.173-.399-.26-.495-.375a1 1 0 01-.189-.347C2 15.108 2 14.95 2 14.631V9.369c0-.317 0-.476.044-.62a1 1 0 01.189-.347c.096-.115.229-.201.495-.374l8.4-5.46c.316-.205.473-.308.643-.348a1 1 0 01.457 0c.17.04.328.143.644.348l8.4 5.46c.266.173.399.26.495.374a1 1 0 01.189.348c.044.143.044.302.044.62v5.263c0 .317 0 .476-.044.62a1 1 0 01-.189.346c-.096.116-.229.202-.495.375z"
}));
}
const ForwardRef = React.forwardRef(CodepenIcon);
export default ForwardRef;