Files
klz-cables.com/.pnpm-store/v10/files/82/1de53f44223aa5d0f590ba316b64dcd5bc8299ca976932dbd1815d226c083e2543e4f8570142b98bd676cb91aa8f77f739a071bc95818f0e478f5d20e88ab8
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
342 B
Plaintext

import * as React from 'react';
type TextProps = Readonly<React.ComponentPropsWithoutRef<"p">>;
declare const Text: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref">> & React.RefAttributes<HTMLParagraphElement>>;
export { Text, type TextProps };