@crazy-web/feedback
Version:
A feedback form handler package that shows a popup based on allowed URLs.
13 lines (12 loc) • 572 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.renderCloseIcon = void 0;
const renderCloseIcon = ({ stroke = "currentColor", size = "24" }) => {
return `
<svg xmlns="http://www.w3.org/2000/svg" width=${size} height=${size} viewBox="0 0 24 24" fill="none" stroke=${stroke} stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
`;
};
exports.renderCloseIcon = renderCloseIcon;