({token}: {token: TokenResult<Token.LOGIC_BOOLEAN>})
| 77 | } |
| 78 | |
| 79 | function Boolean({token}: {token: TokenResult<Token.LOGIC_BOOLEAN>}) { |
| 80 | const label = token.text.toUpperCase(); |
| 81 | return ( |
| 82 | <FilterWrapper aria-label={label}> |
| 83 | <Text variant="muted">{label}</Text> |
| 84 | </FilterWrapper> |
| 85 | ); |
| 86 | } |
| 87 | |
| 88 | function QueryToken({token}: TokenProps) { |
| 89 | switch (token.type) { |
no outgoing calls