(value: unknown)
| 29 | import { IconComponent } from "~/useColumnView"; |
| 30 | |
| 31 | export function iconForValue(value: unknown): IconComponent { |
| 32 | return iconForType(inferType(value)); |
| 33 | } |
| 34 | |
| 35 | export function iconForType(type: JSONValueType): IconComponent { |
| 36 | switch (type.name) { |
no test coverage detected