You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
966 B

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`component.Pay.PayHeader generic should render correctly 1`] = `
<Header
logo={
<SvgPaperPlane
height="38px"
width="38px"
/>
}
subtitle={
<span>
 
</span>
}
title="Send Bitcoin"
/>
`;
exports[`component.Pay.PayHeader offchain should render correctly 1`] = `
<Header
logo={
<SvgLightning
height="45px"
width="45px"
/>
}
subtitle={
<FormattedMessage
defaultMessage="Lightning Payment"
id="components.Pay.subtitle_offchain"
values={Object {}}
/>
}
title="Send Bitcoin"
/>
`;
exports[`component.Pay.PayHeader onchain should render correctly 1`] = `
<Header
logo={
<SvgOnchain
height="45px"
width="45px"
/>
}
subtitle={
<FormattedMessage
defaultMessage="On-Chain Payment"
id="components.Pay.subtitle_onchain"
values={Object {}}
/>
}
title="Send Bitcoin"
/>
`;