fix(nvim-status-bar): wrong icon

This commit is contained in:
Pihkaal
2024-06-01 16:13:37 +02:00
parent 184278b8fb
commit 5e740f2b2f

View File

@@ -14,9 +14,15 @@ export const NvimStatusBar = (props: {
{"\ue0ba"}
</span>
<span className="bg-[#474353] text-[#373040]">{"\ue0ba"}</span>
<span className="bg-[#373040]">{` ${getIcon(props.fileIcon).char}${
props.fileName
} `}</span>
<span className="bg-[#373040]">{` ${
getIcon({
type: "file",
name: props.fileName,
icon: props.fileIcon,
fileName: props.fileName,
repo: "",
}).char
}${props.fileName} `}</span>
<span className="bg-[#373040] text-[#29293c]">{"\ue0ba"}</span>
</div>
);