Files
klz-cables.com/.pnpm-store/v10/files/d2/f6eb1b68b49aa34f9ed1c6733ac89d6af22b2a8bd4c7a8461cd54b6381ec07efb4b8e5345943d00af11b1a4640b8aa6461f130ab5cdfbcc9e015dd8f596b1b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

35 lines
809 B
Plaintext

'use client';
import { c as _c } from "react/compiler-runtime";
import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { XIcon } from '../../../icons/X/index.js';
import { useTranslation } from '../../../providers/Translation/index.js';
import './index.scss';
const baseClass = 'drawer-close-button';
export function DrawerCloseButton(t0) {
const $ = _c(3);
const {
onClick
} = t0;
const {
t
} = useTranslation();
let t1;
if ($[0] !== onClick || $[1] !== t) {
t1 = _jsx("button", {
"aria-label": t("general:close"),
className: baseClass,
onClick,
type: "button",
children: _jsx(XIcon, {})
});
$[0] = onClick;
$[1] = t;
$[2] = t1;
} else {
t1 = $[2];
}
return t1;
}
//# sourceMappingURL=index.js.map