Files
klz-cables.com/.pnpm-store/v10/files/57/27bbffc28f9ae4be04b34d9343eeb13d2b08531da4be608882f8b13f35a30edfd2f13a551558468b2f08a63a1ffae8d8c67f588e82d98fa39f5b2f135fd466
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

15 lines
590 B
Plaintext

import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import React from 'react';
import './index.scss';
const baseClass = 'dots';
export const Dots = ({
ariaLabel,
className,
noBackground,
orientation = 'vertical'
}) => /*#__PURE__*/_jsxs("div", {
"aria-label": ariaLabel,
className: [className, baseClass, noBackground && `${baseClass}--no-background`, orientation && `${baseClass}--${orientation}`].filter(Boolean).join(' '),
children: [/*#__PURE__*/_jsx("div", {}), /*#__PURE__*/_jsx("div", {}), /*#__PURE__*/_jsx("div", {})]
});
//# sourceMappingURL=index.js.map