@nomercyicons/react
Version:
24 lines • 2.29 kB
JavaScript
import * as React from "react";
function DribbbleIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 46 46",
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: "currentColor",
fillRule: "evenodd",
d: "M33.977 39.29c-.2-1.184-1.247-6.95-3.824-14.028 6.342-1.014 11.836.725 12.242.858-.874 5.473-4.009 10.193-8.418 13.17zm-10.976 3.354c-4.755 0-9.115-1.69-12.515-4.503.26.21.441.343.441.343s3.765-8.21 15.415-12.27c.043-.016.089-.027.132-.04 2.765 7.18 3.903 13.195 4.195 14.912-2.355 1-4.95 1.558-7.668 1.558zM3.357 22.999c0-.209.01-.414.016-.62.349.008 10.053.228 20.167-2.799.562 1.1 1.1 2.223 1.593 3.34-.26.07-.517.149-.774.236-10.6 3.423-15.977 12.96-15.977 12.96s.008.007.008.01A19.566 19.566 0 013.357 23zm11.262-17.76c.263.348 3.895 5.273 7.295 11.315-9.431 2.507-17.619 2.407-18.135 2.399 1.274-6.085 5.36-11.129 10.84-13.714zm3.676-1.31c0 .003-.003.006-.003.006l-.06.01c.022-.005.041-.007.063-.015zm17.678 4.333c-.048.073-2.845 4.333-10.261 7.11-3.357-6.169-7.046-11.07-7.341-11.459A19.644 19.644 0 0123 3.36c4.972 0 9.513 1.855 12.972 4.903zm6.665 14.542c-.284-.062-6.932-1.493-13.68-.644-.141-.335-.28-.673-.425-1.011a59.033 59.033 0 00-1.307-2.85c7.757-3.168 10.906-7.72 10.944-7.773a19.564 19.564 0 014.468 12.278zm2.897-4.433a23.08 23.08 0 00-1.344-4.324 22.726 22.726 0 00-2.121-3.905 22.986 22.986 0 00-6.21-6.21 22.93 22.93 0 00-3.906-2.123A23.045 23.045 0 0023.001 0a23.078 23.078 0 00-8.955 1.81A23.058 23.058 0 003.93 10.141 22.883 22.883 0 000 22.999a22.77 22.77 0 001.81 8.954 22.775 22.775 0 002.12 3.91 23.443 23.443 0 002.805 3.403 23.045 23.045 0 007.311 4.925c1.39.59 2.845 1.038 4.322 1.338 1.515.314 3.073.471 4.633.471 1.558 0 3.116-.157 4.63-.47 1.478-.3 2.933-.75 4.323-1.34a22.917 22.917 0 003.906-2.12 23.353 23.353 0 003.405-2.804 23.268 23.268 0 002.805-3.402 22.966 22.966 0 003.465-8.23 23.271 23.271 0 000-9.263z"
}));
}
const ForwardRef = React.forwardRef(DribbbleIcon);
export default ForwardRef;