@coursebuilder/commerce-next
Version:
Commerce Functionality for Course Builder with Next.js
33 lines • 1.08 kB
TypeScript
import * as React from 'react';
type LoginLinkContextType = {
email: string;
};
type RootProps = LoginLinkContextType & {
className?: string;
};
export declare const LoginLinkProvider: React.FC<LoginLinkContextType & {
children: React.ReactNode;
}>;
export declare const useLoginLink: () => LoginLinkContextType;
declare const Root: React.FC<React.PropsWithChildren<RootProps>>;
type TitleProps = {
asChild?: boolean;
className?: string;
};
declare const Title: React.FC<React.PropsWithChildren<TitleProps>>;
type CTAProps = {
asChild?: boolean;
className?: string;
};
declare const CTA: React.FC<React.PropsWithChildren<CTAProps>>;
type StatusProps = {
className?: string;
};
declare const Status: React.FC<React.PropsWithChildren<StatusProps>>;
type DescriptionProps = {
className?: string;
};
declare const Description: React.FC<React.PropsWithChildren<DescriptionProps>>;
declare const LoginLinkComp: React.FC<LoginLinkContextType>;
export { Root, Title, Description, Status, CTA, LoginLinkComp };
//# sourceMappingURL=login-link.d.ts.map