import { Classes } from '@blueprintjs/core'; import { FInputGroup, FSwitch, Group, Stack } from '@/components'; const items = [ { key: 'dueAmount', label: 'Due Amount' }, { key: 'billedTo', label: 'Billed To' }, { key: 'balanceDue', label: 'Balance Due' }, { key: 'termsConditions', label: 'Terms & Conditions' }, ]; export function InvoiceCustomizeContentFields() { return (

General Branding

Set your invoice details to be automatically applied every time
you create a new invoice.

Header

{items.map((item, index) => ( ))}
); }