detail panel

This commit is contained in:
2025-10-26 00:28:40 +02:00
parent c53213a357
commit 2a0c96bb4c
4 changed files with 98 additions and 27 deletions
+11
View File
@@ -9,6 +9,7 @@ import {
IconLayoutGrid,
IconArrowLeft,
IconArrowRight,
IconChevronsRight,
} from '@tabler/icons-react';
import FolderSvg from '../assets/folder.svg';
@@ -120,6 +121,15 @@ export const ArrowRightIcon = ({ className, size = '1em', stroke = 1.6, ...rest
/>
);
export const ChevronsRightIcon = ({ className, size = '1em', stroke = 1.6, ...rest }) => (
<IconChevronsRight
className={composeClassName('icon', className)}
size={size}
stroke={stroke}
{...rest}
/>
);
export default {
ChevronIcon,
TrashIcon,
@@ -130,4 +140,5 @@ export default {
DownloadIcon,
ViewListIcon,
ViewGridIcon,
ChevronsRightIcon,
};