Fix: Change file name to start with small letter instead of captial l… (#356)

This commit is contained in:
Abdelrhman Kamal Mahmoud Ali Slim
2025-04-18 16:55:49 -07:00
committed by GitHub
parent bec3947058
commit d69a17ac49
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import figures from "figures";
import { Box, Text } from "ink";
import React from "react";
export type Props = {
readonly isSelected?: boolean;
};
function Indicator({ isSelected = false }: Props): JSX.Element {
return (
<Box marginRight={1}>
{isSelected ? (
<Text color="blue">{figures.pointer}</Text>
) : (
<Text> </Text>
)}
</Box>
);
}
export default Indicator;