Files
klz-cables.com/.pnpm-store/v10/files/ca/a2e86330db21ceaf717cfd1b526aaf477942a3e9ea6546de4fa56a3398e000b972dcae35585471251c525bca9d090887703ad8afd720f3b7fa4262285ec78d
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

7 lines
347 B
Plaintext

import * as React from 'react';
type ButtonProps = Readonly<React.ComponentPropsWithoutRef<"a">>;
declare const Button: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref">> & React.RefAttributes<HTMLAnchorElement>>;
export { Button, type ButtonProps };