@derockdev/discord-components-core
Version:
Web components to easily build and display fake Discord messages on your webpages.
6 lines (5 loc) • 415 B
JavaScript
import { h } from '@stencil/core';
export default function UserJoin(props) {
return (h("svg", Object.assign({}, props, { "aria-hidden": "false", width: "18", height: "18", viewBox: "0 0 18 18" }), h("g", { fill: "none", "fill-rule": "evenodd" }, h("path", { d: "M18 0H0v18h18z" }), h("path", { fill: "#3ba55c", d: "M0 8h14.2l-3.6-3.6L12 3l6 6-6 6-1.4-1.4 3.6-3.6H0" }))));
}
//# sourceMappingURL=user-join.js.map