Files
klz-cables.com/.pnpm-store/v10/files/96/4d65aa35240d3d494c29c623ea93ab8affd16e4aa61aa5668c1a1bf1fef639456a8ea5ebe0d158f85b66c06b87bee1dc20b46a25acf1c222077b795d4eaa0c
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

17 lines
504 B
Plaintext

import type { HTMLAttributes } from 'react';
export type Props = {
readonly children: React.ReactNode;
readonly className?: string;
readonly gutter?: boolean;
readonly Header?: React.ReactNode;
readonly hoverTitle?: boolean;
readonly slug: string;
readonly title?: string;
};
export type TogglerProps = {
children: React.ReactNode;
className?: string;
disabled?: boolean;
slug: string;
} & HTMLAttributes<HTMLButtonElement>;
//# sourceMappingURL=types.d.ts.map