@dugongjs/cli
Version:
11 lines (10 loc) • 492 B
JavaScript
import { Box, Text } from "ink";
import React from "react";
export const HotkeyIndicator = ({ label, hotkey, hotkeyWidth = 4 }) => {
return (React.createElement(Box, { flexDirection: "row" },
React.createElement(Box, { width: hotkeyWidth },
React.createElement(Text, { color: "cyan" }, hotkey)),
React.createElement(Box, { flexGrow: 1 },
React.createElement(Text, null, ": "),
React.createElement(Text, { color: "grey" }, label))));
};