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
12 lines
508 B
Plaintext
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 };
|