@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 1.56 kB
JavaScript
import * as React from "react";
function DiscordIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M18.93 5.641a16.5 16.5 0 0 0-4.07-1.262.06.06 0 0 0-.066.03c-.175.313-.37.721-.506 1.042a15.2 15.2 0 0 0-4.573 0A11 11 0 0 0 9.2 4.41a.06.06 0 0 0-.065-.031 16.5 16.5 0 0 0-4.07 1.262.06.06 0 0 0-.028.024c-2.593 3.873-3.303 7.652-2.954 11.383a.07.07 0 0 0 .026.047 16.6 16.6 0 0 0 4.994 2.524.06.06 0 0 0 .07-.023q.58-.788 1.022-1.661a.063.063 0 0 0-.035-.088 11 11 0 0 1-1.56-.744.064.064 0 0 1-.007-.107q.159-.118.31-.242a.06.06 0 0 1 .065-.009c3.273 1.494 6.817 1.494 10.051 0a.06.06 0 0 1 .066.008q.15.124.31.244a.064.064 0 0 1-.005.106q-.747.435-1.561.743a.064.064 0 0 0-.034.089c.3.581.643 1.135 1.02 1.66a.06.06 0 0 0 .07.024 16.5 16.5 0 0 0 5.003-2.524.07.07 0 0 0 .026-.046c.417-4.314-.699-8.062-2.957-11.384a.05.05 0 0 0-.026-.024M8.684 14.776c-.985 0-1.797-.905-1.797-2.016s.796-2.016 1.797-2.016c1.01 0 1.813.913 1.798 2.016 0 1.111-.796 2.016-1.798 2.016m6.646 0c-.985 0-1.797-.905-1.797-2.016s.796-2.016 1.797-2.016c1.009 0 1.813.913 1.797 2.016 0 1.111-.788 2.016-1.797 2.016"
}));
}
const ForwardRef = React.forwardRef(DiscordIcon);
export default ForwardRef;