Files
klz-cables.com/.pnpm-store/v10/files/4e/93d11f690ca9239b22f1c889c731ddf6f882bed39967a2a45505daa5598c43145650226b0a9dadd440bed7d94e212c0acb39ecde5657c2a137822ed525cf5a
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

16 lines
517 B
Plaintext

import { StylesType } from 'md-to-react-email';
import * as React from 'react';
type MarkdownProps = Readonly<{
children: string;
markdownCustomStyles?: StylesType;
markdownContainerStyles?: React.CSSProperties;
}>;
declare const Markdown: React.ForwardRefExoticComponent<Readonly<{
children: string;
markdownCustomStyles?: StylesType | undefined;
markdownContainerStyles?: React.CSSProperties | undefined;
}> & React.RefAttributes<HTMLDivElement>>;
export { Markdown, type MarkdownProps };