@nomercyicons/react
Version:
24 lines • 2.3 kB
JavaScript
const React = require("react");
function CodepenColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#0B0B0A",
fillRule: "evenodd",
d: "M47.982 16.419c-.005-.032-.012-.06-.016-.09a2.064 2.064 0 00-.037-.173c-.009-.034-.022-.067-.033-.1a2.531 2.531 0 00-.052-.15 1.027 1.027 0 00-.046-.1 1.065 1.065 0 00-.071-.137c-.018-.033-.039-.064-.059-.096a2.025 2.025 0 00-.261-.327c-.027-.027-.052-.056-.08-.08a3.42 3.42 0 00-.117-.099c-.032-.024-.062-.048-.094-.07l-.034-.026L25.144.346a2.063 2.063 0 00-2.288 0L.919 14.971l-.034.026a1.853 1.853 0 00-.21.17c-.029.023-.055.052-.083.079-.035.036-.07.074-.102.112a1.326 1.326 0 00-.157.215l-.06.096a1.664 1.664 0 00-.07.136 1.787 1.787 0 00-.099.25c-.011.034-.023.067-.032.101-.015.056-.025.114-.036.173-.006.03-.013.058-.017.09-.011.087-.019.177-.019.268v14.625c0 .09.008.18.02.27.003.029.01.059.016.089.01.059.021.115.036.173.009.034.021.067.032.1.016.05.032.1.054.151.013.034.03.066.044.1.023.046.045.091.071.138.02.031.039.063.06.094a1.824 1.824 0 00.26.325 1.853 1.853 0 00.293.25l.033.027 21.937 14.625a2.061 2.061 0 002.288 0l21.938-14.625.034-.026c.032-.022.062-.046.094-.07a3.42 3.42 0 00.117-.1c.028-.025.053-.052.08-.08a1.812 1.812 0 00.261-.326c.02-.032.041-.063.059-.094.027-.047.05-.092.07-.138.017-.034.034-.066.047-.1.02-.05.036-.101.052-.151.011-.033.024-.066.033-.1.015-.058.026-.114.037-.173.004-.03.011-.06.016-.088.012-.09.018-.18.018-.27V16.688c0-.092-.006-.182-.018-.269zM26.062 5.917L42.224 16.69l-7.218 4.829-8.943-5.982v-9.62zm-4.125 0v9.62l-8.941 5.982-7.22-4.829L21.939 5.917zM4.125 20.548L9.287 24l-5.162 3.452v-6.904zm17.813 21.535L5.776 31.31l7.219-4.828 8.941 5.981v9.62zM24 28.88L16.706 24 24 19.12 31.296 24 24 28.88zm2.063 13.203v-9.62l8.942-5.98 7.218 4.827-16.16 10.773zm17.812-14.631L38.715 24l5.16-3.452v6.904z"
}));
}
const ForwardRef = React.forwardRef(CodepenColorIcon);
module.exports = ForwardRef;