Files
klz-cables.com/.pnpm-store/v10/files/fb/700b45c5db087607a796a38050103f5dd345f971a28c4c8be4bdacfa7ec0e4aac76ae96b6168a922e0b0b562e7bb766e78d65e87b50c7e62d63a1b302f1ce5
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

22 lines
564 B
Plaintext

'use client';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import React from 'react';
import { DrawerCloseButton } from '../DrawerCloseButton/index.js';
import './index.scss';
const baseClass = 'bulk-upload--drawer-header';
export function DrawerHeader({
onClose,
title
}) {
return /*#__PURE__*/_jsxs("div", {
className: baseClass,
children: [/*#__PURE__*/_jsx("h2", {
title: title,
children: title
}), /*#__PURE__*/_jsx(DrawerCloseButton, {
onClick: onClose
})]
});
}
//# sourceMappingURL=index.js.map