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

11 lines
409 B
Plaintext

import * as React from 'react';
type RowProps = Readonly<React.ComponentPropsWithoutRef<"table"> & {
children: React.ReactNode;
}>;
declare const Row: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
children: React.ReactNode;
}> & React.RefAttributes<HTMLTableElement>>;
export { Row, type RowProps };