// @ts-nocheck import { FInputGroup, FSwitch, Group, Stack } from '@/components'; import { CLASSES } from '@/constants'; import { Classes } from '@blueprintjs/core'; import { fieldsGroups } from './constants'; export function EstimateCustomizeContentFields() { return (

General Branding

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

{fieldsGroups.map((group) => ( <>

{group.label}

{group.fields.map((item, index) => ( {item.labelKey && ( )} ))} ))}
); }