source: src/components/nav-section/config.ts@ 057453c

main
Last change on this file since 057453c was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.3 KB
Line 
1import { NavConfigProps } from './types';
2
3// ----------------------------------------------------------------------
4
5export const navVerticalConfig = (config?: NavConfigProps) => ({
6 itemGap: config?.itemGap || 4,
7 iconSize: config?.iconSize || 24,
8 currentRole: config?.currentRole,
9 itemRootHeight: config?.itemRootHeight || 44,
10 itemSubHeight: config?.itemSubHeight || 36,
11 itemPadding: config?.itemPadding || '4px 8px 4px 12px',
12 itemRadius: config?.itemRadius || 8,
13 hiddenLabel: config?.hiddenLabel || false,
14});
15
16export const navMiniConfig = (config?: NavConfigProps) => ({
17 itemGap: config?.itemGap || 4,
18 iconSize: config?.iconSize || 22,
19 currentRole: config?.currentRole,
20 itemRootHeight: config?.itemRootHeight || 56,
21 itemSubHeight: config?.itemSubHeight || 34,
22 itemPadding: config?.itemPadding || '6px 0 0 0',
23 itemRadius: config?.itemRadius || 6,
24 hiddenLabel: config?.hiddenLabel || false,
25});
26
27export const navHorizontalConfig = (config?: NavConfigProps) => ({
28 itemGap: config?.itemGap || 6,
29 iconSize: config?.iconSize || 22,
30 currentRole: config?.currentRole,
31 itemRootHeight: config?.itemRootHeight || 32,
32 itemSubHeight: config?.itemSubHeight || 34,
33 itemPadding: config?.itemPadding || '0 6px 0 6px',
34 itemRadius: config?.itemRadius || 6,
35 hiddenLabel: config?.hiddenLabel || false,
36});
Note: See TracBrowser for help on using the repository browser.