Files
klz-cables.com/.pnpm-store/v10/files/45/776b0b58a1a7008f5bc51d5bfd3978f644c729f3ae8f0a34af865962be372d4a62ceab6b28ffd0b6d76bf9cce8b8befc669018b9f3e34b96eb7f653bcb21de
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
605 B
Plaintext

import type { MouseEvent } from 'react';
import React from 'react';
import './index.scss';
type onClick = (event: MouseEvent) => void;
export type Props = Readonly<{
alignIcon?: 'left' | 'right';
children?: React.ReactNode;
className?: string;
icon?: React.ReactNode;
onClick?: onClick;
to?: string;
type?: 'default' | 'error' | 'info' | 'success';
}>;
export type RenderedTypeProps = {
children?: React.ReactNode;
className?: string;
onClick?: onClick;
to: string;
};
export declare const Banner: React.FC<Props>;
export {};
//# sourceMappingURL=index.d.ts.map