(fix) do not transitively rely on deprecated lodash deps (#175)
Signed-off-by: Thibault Sottiaux <tibo@openai.com>
This commit is contained in:
committed by
GitHub
parent
057f113c6d
commit
f3f9e41a15
13
codex-cli/src/components/select-input/Item.tsx
Normal file
13
codex-cli/src/components/select-input/Item.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Text } from "ink";
|
||||
import * as React from "react";
|
||||
|
||||
export type Props = {
|
||||
readonly isSelected?: boolean;
|
||||
readonly label: string;
|
||||
};
|
||||
|
||||
function Item({ isSelected = false, label }: Props): JSX.Element {
|
||||
return <Text color={isSelected ? "blue" : undefined}>{label}</Text>;
|
||||
}
|
||||
|
||||
export default Item;
|
||||
Reference in New Issue
Block a user