UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

9 lines 586 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Text, Box } from 'ink'; import { Colors } from '../../colors.js'; export const InfoMessage = ({ text }) => { const prefix = 'ℹ '; const prefixWidth = prefix.length; return (_jsxs(Box, { flexDirection: "row", marginTop: 1, children: [_jsx(Box, { width: prefixWidth, children: _jsx(Text, { color: Colors.AccentYellow, children: prefix }) }), _jsx(Box, { flexGrow: 1, children: _jsx(Text, { wrap: "wrap", color: Colors.AccentYellow, children: text }) })] })); }; //# sourceMappingURL=InfoMessage.js.map