import { type DomIconProps, IconHide, IconShow } from '@/components/Icons'; /** Icon for visibility. */ export function IconItemVisibility({ value, size = '1.25rem', className }: DomIconProps) { if (value) { return ; } else { return ; } }