Report test; Map printing test

This commit is contained in:
cracklesparkle
2025-01-31 15:53:58 +09:00
parent 0788a401ca
commit c08f839b70
12 changed files with 323 additions and 57 deletions

View File

@ -1,6 +1,6 @@
import { Center, SegmentedControl } from '@mantine/core'
import { getMode, Mode, setMode } from '../../store/map'
import { IconEdit, IconEye } from '@tabler/icons-react'
import { IconEdit, IconEye, IconPrinter } from '@tabler/icons-react'
const MapMode = ({
map_id
@ -25,6 +25,15 @@ const MapMode = ({
</Center>
),
},
{
value: 'print',
label: (
<Center style={{ gap: 10 }}>
<IconPrinter size={16} />
<span>Печать</span>
</Center>
),
},
]} />
)
}