import { Button, ButtonProps, Intent } from '@blueprintjs/core';
import { css } from '@emotion/css';
import { lighten } from 'polished';
import { x } from '@xstyled/emotion';
import { Stack, StackProps } from '@/components';
export type SendMailReceiptProps = StackProps;
export function SendMailReceipt({
...restProps
}: SendMailReceiptProps) {
return (
);
}
interface SendMailReceiptCompanyLogoProps extends StackProps {
src: string;
}
function SendMailReceiptCompanyLogo({
src,
...props
}: SendMailReceiptCompanyLogoProps) {
return (
);
}
interface SendMailReceiptTitleProps extends ButtonProps {
primaryColor?: string;
children: React.ReactNode;
}
function SendMailReceiptPrimaryButton({
primaryColor,
...props
}: SendMailReceiptTitleProps) {
return (
);
}
SendMailReceipt.PrimaryButton = SendMailReceiptPrimaryButton;
SendMailReceipt.CompanyLogo = SendMailReceiptCompanyLogo;