import { UserIdentification32, Home32, Report32 } from '@carbon/icons-react'; //navigation export const patientMeta = { name: 'patient', slot: 'ohri-patient-slot', config: { columns: 1, type: 'grid', icon: Home32 }, isLink: true, title: 'Home', }; export const patientEditMeta = { name: 'patient-edit', slot: 'ohri-patient-edit-slot', config: { columns: 1, type: 'grid', icon: UserIdentification32 }, isLink: true, title: 'Globits - Patient Edit', }; export const patientCreateMeta = { name: 'patient-create', slot: 'ohri-patient-create-slot', config: { columns: 1, type: 'grid', icon: UserIdentification32 }, isLink: true, title: 'Globits - Patient Create', }; export const reportMeta = { name: 'report', slot: 'ohri-report-slot', config: { columns: 1, type: 'grid', icon: Report32 }, isLink: true, title: 'Báo cáo', };