(info: PropertiesFloatProps)
| 8 | }; |
| 9 | |
| 10 | export function PropertiesFloat(info: PropertiesFloatProps) { |
| 11 | return ( |
| 12 | <DataTable |
| 13 | rows={[ |
| 14 | { |
| 15 | key: "Formatted value", |
| 16 | value: formatValue(info.type) ?? "", |
| 17 | icon: <ValueIcon type={info.type} />, |
| 18 | }, |
| 19 | { |
| 20 | key: "Type", |
| 21 | value: info.type.name, |
| 22 | }, |
| 23 | ]} |
| 24 | /> |
| 25 | ); |
| 26 | } |
nothing calls this directly
no test coverage detected