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

12 lines
508 B
Plaintext

import * as React from 'react';
type RootProps = React.ComponentPropsWithoutRef<"code"> & React.ComponentPropsWithoutRef<"span">;
type CodeInlineProps = Readonly<RootProps>;
/**
* If you are sending emails for users that have the Orange.fr email client,
* beware that this component will only work when you have a head containing meta tags.
*/
declare const CodeInline: React.ForwardRefExoticComponent<Readonly<RootProps> & React.RefAttributes<HTMLSpanElement>>;
export { CodeInline, CodeInlineProps };