mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: wip invoice customizer
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Box, FFormGroup } from '@/components';
|
||||
import { FColorField } from './FColorField';
|
||||
|
||||
export function InvoiceCustomizeGeneralField() {
|
||||
return (
|
||||
<Box>
|
||||
<FFormGroup name={'primaryColor'} label={'Primary Color'} inline>
|
||||
<FColorField name={'primaryColor'} />
|
||||
</FFormGroup>
|
||||
|
||||
<FFormGroup name={'secondaryColor'} label={'Secondary Color'} inline>
|
||||
<FColorField name={'secondaryColor'} />
|
||||
</FFormGroup>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user