mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
11 lines
391 B
TypeScript
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'} />;
|
|
}
|
|
}
|