Portal/rsconcept/frontend/src/features/library/components/icon-item-visibility.tsx
2025-03-12 12:04:23 +03:00

11 lines
391 B
TypeScript

import { type DomIconProps, IconHide, IconShow } from '@/components/icons';
/** Icon for visibility. */
export function IconItemVisibility({ value, size = '1.25rem', className }: DomIconProps<boolean>) {
if (value) {
return <IconShow size={size} className={className ?? 'text-ok-600'} />;
} else {
return <IconHide size={size} className={className ?? 'text-warn-600'} />;
}
}