feat(nvim): implement basic layout

This commit is contained in:
2024-05-30 15:44:49 +02:00
parent 6a38b3a41e
commit 9a5cd07c80
9 changed files with 66 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
export const NvimStatusBar = (props: {
label: string;
labelColor: string;
fileName: string;
}) => (
<div className="bg-[#29293c]">
<span className="text-black" style={{ background: props.labelColor }}>
{` ${props.label} `}
</span>
<span className="text-[#474353]" style={{ background: props.labelColor }}>
{"\ue0ba"}
</span>
<span className="bg-[#474353] text-[#373040]">{"\ue0ba"}</span>
<span className="bg-[#373040] text-white">{` ${props.fileName} `}</span>
<span className="bg-[#373040] text-[#29293c]">{"\ue0ba"}</span>
</div>
);