Files
klz-cables.com/.pnpm-store/v10/files/73/b8f4d2bc7e58ac30696350cc481904415a096fb538c2e28df16169246b43ae1a74302d376a8da2c28e5dcefd315eb2a5af2e336383de44405275a43f92c8a1
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
410 B
Plaintext

import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import './index.scss';
const baseClass = 'upload-field-card';
export function UploadCard({
children,
className,
size = 'medium'
}) {
return /*#__PURE__*/_jsx("div", {
className: [baseClass, className, `${baseClass}--size-${size}`].filter(Boolean).join(' '),
children: children
});
}
//# sourceMappingURL=index.js.map