Portal/rsconcept/frontend/src/features/rsform/components/icon-dependency-mode.tsx

27 lines
971 B
TypeScript
Raw Normal View History

2025-02-26 00:16:22 +03:00
import {
type DomIconProps,
IconGraphCollapse,
IconGraphExpand,
IconGraphInputs,
IconGraphOutputs,
IconSettings
2025-03-12 12:04:23 +03:00
} from '@/components/icons';
2025-02-26 00:16:22 +03:00
2025-03-12 11:54:32 +03:00
import { DependencyMode } from '../stores/cst-search';
2025-02-26 00:16:22 +03:00
/** Icon for term graph dependency mode. */
export function IconDependencyMode({ value, size = '1.25rem', className }: DomIconProps<DependencyMode>) {
switch (value) {
case DependencyMode.ALL:
return <IconSettings size={size} className={className} />;
case DependencyMode.OUTPUTS:
return <IconGraphOutputs size={size} className={className ?? 'text-sec-600'} />;
case DependencyMode.INPUTS:
return <IconGraphInputs size={size} className={className ?? 'text-sec-600'} />;
case DependencyMode.EXPAND_OUTPUTS:
return <IconGraphExpand size={size} className={className ?? 'text-sec-600'} />;
case DependencyMode.EXPAND_INPUTS:
return <IconGraphCollapse size={size} className={className ?? 'text-sec-600'} />;
}
}