const EyeIcon = (props: { show: boolean }) => { const closedEye = (<svg/>/*omitted for brevity*/</svg>); const openEye = (<svg/>/*omitted for brevity*/</svg>); return (<Show when={props.show} fallback={closedEye}> {openEye} </Show>)};