chromatic
Version:
Automate visual testing across browsers. Gather UI feedback. Versioned documentation.
13 lines (10 loc) • 382 B
JavaScript
import chalk from 'chalk';
import dedent from 'ts-dedent';
import { warning } from '../../components/icons';
import link from '../../components/link';
export default ({ billingUrl }) =>
dedent(chalk`
${warning} {bold Payment required}
This build is limited because your account has a payment past due.
Visit ${link(billingUrl)} to update your billing details.
`);