diff --git a/rsconcept/frontend/src/components/Icons.tsx b/rsconcept/frontend/src/components/Icons.tsx index 38ca3b44..83bb9a38 100644 --- a/rsconcept/frontend/src/components/Icons.tsx +++ b/rsconcept/frontend/src/components/Icons.tsx @@ -22,6 +22,9 @@ export { LuGlasses as IconReader } from 'react-icons/lu'; export { FiBell as IconFollow } from 'react-icons/fi'; export { FiBellOff as IconFollowOff } from 'react-icons/fi'; +export { LuChevronDown as IconDropArrow } from 'react-icons/lu'; +export { LuChevronUp as IconDropArrowUp } from 'react-icons/lu'; + export { TbColumns as IconList } from 'react-icons/tb'; export { TbColumnsOff as IconListOff } from 'react-icons/tb'; export { BiFontFamily as IconText } from 'react-icons/bi'; diff --git a/rsconcept/frontend/src/components/ui/GraphUI.tsx b/rsconcept/frontend/src/components/ui/GraphUI.tsx index 79686547..5be724fe 100644 --- a/rsconcept/frontend/src/components/ui/GraphUI.tsx +++ b/rsconcept/frontend/src/components/ui/GraphUI.tsx @@ -3,6 +3,7 @@ import { GraphCanvas as GraphUI } from 'reagraph'; -export { type GraphEdge, type GraphNode, type GraphCanvasRef, type LayoutTypes, Sphere, useSelection } from 'reagraph'; +export { type GraphEdge, type GraphNode, type GraphCanvasRef, Sphere, useSelection } from 'reagraph'; +export { type LayoutTypes as GraphLayout } from 'reagraph'; export default GraphUI; diff --git a/rsconcept/frontend/src/components/ui/SelectSingle.tsx b/rsconcept/frontend/src/components/ui/SelectSingle.tsx index f09b4e36..7d4e9c94 100644 --- a/rsconcept/frontend/src/components/ui/SelectSingle.tsx +++ b/rsconcept/frontend/src/components/ui/SelectSingle.tsx @@ -9,10 +9,12 @@ import { selectDarkT, selectLightT } from '@/styling/color'; interface SelectSingleProps = GroupBase