Files
klz-cables.com/.pnpm-store/v10/files/48/710d9018267890218912334fdd139aae4ab57fa7897293202a4e991d1db0f3dddc177f7f46871962d8548275e0f5d99a1c7ef8c4bbdbb86e43815679fdf4bc
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
755 B
Plaintext

import type { LinkProps } from 'next/link.js';
import * as React from 'react';
import './index.scss';
export { PopupListDivider as Divider } from '../PopupDivider/index.js';
export { PopupListGroupLabel as GroupLabel } from '../PopupGroupLabel/index.js';
export declare const ButtonGroup: React.FC<{
buttonSize?: 'default' | 'small';
children: React.ReactNode;
className?: string;
textAlign?: 'center' | 'left' | 'right';
}>;
type MenuButtonProps = {
active?: boolean;
children: React.ReactNode;
className?: string;
disabled?: boolean;
href?: LinkProps['href'];
id?: string;
onClick?: (e?: React.MouseEvent) => void;
};
export declare const Button: React.FC<MenuButtonProps>;
//# sourceMappingURL=index.d.ts.map