This commit is contained in:
2025-10-29 22:46:44 +01:00
parent 4a116e013c
commit 22f4d42c19
8 changed files with 116 additions and 35 deletions
+10
View File
@@ -23,6 +23,7 @@ import {
IconX,
IconSettings,
IconCheck,
IconPlus,
} from '@tabler/icons-react';
import FolderSvg from '../assets/folder.svg';
@@ -206,6 +207,15 @@ export const SettingsIcon = ({ className, size = '1em', stroke = 1.6, ...rest })
/>
);
export const PlusIcon = ({ className, size = '1em', stroke = 1.6, ...rest }) => (
<IconPlus
className={composeClassName('icon', className)}
size={size}
stroke={stroke}
{...rest}
/>
);
export const CheckIcon = ({ className, size = '1em', stroke = 1.6, ...rest }) => (
<IconCheck
className={composeClassName('icon', className)}