// @ts-nocheck import { Classes, Text } from '@blueprintjs/core'; import { Link } from 'react-router-dom'; import { FFormGroup, FieldRequiredHint, FInputGroup, FSwitch, Group, Stack, } from '@/components'; import { FColorInput } from '@/components/Forms/FColorInput'; import { CreditCardIcon } from '@/icons/CreditCardIcon'; import { Overlay } from './Overlay'; import { useIsTemplateNamedFilled } from '@/containers/BrandingTemplates/utils'; import { BrandingCompanyLogoUploadField } from '@/containers/ElementCustomize/components/BrandingCompanyLogoUploadField'; import { MANAGE_LINK_URL } from './constants'; import { useDrawerContext } from '@/components/Drawer/DrawerProvider'; import { useDrawerActions } from '@/hooks/state'; export function InvoiceCustomizeGeneralField() { const isTemplateNameFilled = useIsTemplateNamedFilled(); return ( General Branding Set your company logo and branding colors to be automatically applied to your invoices. } fastField style={{ marginBottom: 10 }} > ); } function InvoiceCustomizePaymentManage() { const { name } = useDrawerContext(); const { closeDrawer } = useDrawerActions(); const handleLinkClick = () => { closeDrawer(name); }; return ( Accept payment methods Manage ); }
Set your company logo and branding colors to be automatically applied to your invoices.