import { ICONS, getIcon } from "~/utils/icons"; export const NvimStatusBar = (props: { label: string; labelColor: string; fileIcon?: string; fileName: string; }) => (
{` ${props.label} `} {"\ue0ba"} {"\ue0ba"} {` ${getIcon(props.fileIcon).char}${ props.fileName } `} {"\ue0ba"}
);