@derockdev/discord-components-core
Version:
Web components to easily build and display fake Discord messages on your webpages.
6 lines (5 loc) • 507 B
JavaScript
import { h } from '@stencil/core';
export default function DMEdit(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", { fill: "#99AAB5", d: "M0 14.25V18h3.75L14.81 6.94l-3.75-3.75L0 14.25zM17.71 4.04c.39-.39.39-1.02 0-1.41L15.37.29c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z" }), h("path", { d: "M0 0h18v18H0" }))));
}
//# sourceMappingURL=dm-edit.js.map