Merge branch 'main' into feat/new-workflow-templates

This commit is contained in:
Johnpaul
2025-09-12 20:25:18 +01:00
131 changed files with 4512 additions and 1927 deletions

View File

@@ -56,8 +56,8 @@ export const getBorderButtonTypeClasses = (type: ButtonType = 'primary') => {
export const getIconButtonSizeClasses = (size: ButtonSize = 'md') => {
const sizeClasses = {
'fit-content': 'w-auto h-auto',
sm: 'w-6 h-6 text-xs !rounded-md',
md: 'w-8 h-8 text-sm'
sm: 'size-8 text-xs !rounded-md',
md: 'size-10 text-sm'
}
return sizeClasses[size]
}

View File

@@ -1,7 +1,7 @@
export interface NavItemData {
id: string
label: string
icon?: string
icon: string
}
export interface NavGroupData {