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
44 lines
1.9 KiB
Plaintext
44 lines
1.9 KiB
Plaintext
import * as React$1 from 'react';
|
|
|
|
type As<DefaultTag extends React.ElementType, T1 extends React.ElementType, T2 extends React.ElementType = T1, T3 extends React.ElementType = T1, T4 extends React.ElementType = T1, T5 extends React.ElementType = T1> = (React.ComponentPropsWithRef<DefaultTag> & {
|
|
as?: DefaultTag;
|
|
}) | (React.ComponentPropsWithRef<T1> & {
|
|
as: T1;
|
|
}) | (React.ComponentPropsWithRef<T2> & {
|
|
as: T2;
|
|
}) | (React.ComponentPropsWithRef<T3> & {
|
|
as: T3;
|
|
}) | (React.ComponentPropsWithRef<T4> & {
|
|
as: T4;
|
|
}) | (React.ComponentPropsWithRef<T5> & {
|
|
as: T5;
|
|
});
|
|
|
|
interface Margin {
|
|
m?: number | string;
|
|
mx?: number | string;
|
|
my?: number | string;
|
|
mt?: number | string;
|
|
mr?: number | string;
|
|
mb?: number | string;
|
|
ml?: number | string;
|
|
}
|
|
|
|
type HeadingAs = As<"h1", "h2", "h3", "h4", "h5", "h6">;
|
|
type HeadingProps = HeadingAs & Margin;
|
|
declare const Heading: React$1.ForwardRefExoticComponent<(Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as?: "h1" | undefined;
|
|
} & Margin>, "ref"> | Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as: "h2";
|
|
} & Margin>, "ref"> | Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as: "h3";
|
|
} & Margin>, "ref"> | Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as: "h4";
|
|
} & Margin>, "ref"> | Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as: "h5";
|
|
} & Margin>, "ref"> | Omit<Readonly<React$1.ClassAttributes<HTMLHeadingElement> & React$1.HTMLAttributes<HTMLHeadingElement> & {
|
|
as: "h6";
|
|
} & Margin>, "ref">) & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
|
|
export { Heading, type HeadingAs, type HeadingProps };
|