salat
Version:
Daily Moroccan prayers time, right in your console, at the tip of your fingers
8 lines (7 loc) • 459 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { Box, Text } from "ink";
export const ProgressBar = ({ progress, width }) => {
const filledWidth = Math.max(0, Math.min(width, Math.round(progress * width)));
const emptyWidth = width - filledWidth;
return (_jsxs(Box, { children: [_jsx(Text, { color: "green", children: "█".repeat(filledWidth) }), _jsx(Text, { color: "gray", children: "░".repeat(emptyWidth) })] }));
};