ai_api / bin /cli /tui-components /CodeBlock.jsx
Yogesh
initial deploy
cd8bd0a
Raw
History Blame Contribute Delete
351 Bytes
import React from "react";
import { Box, Text } from "ink";
export function CodeBlock({ code = "", language }) {
return (
<Box flexDirection="column" borderStyle="single" borderColor="gray" paddingX={1}>
{language && (
<Text dimColor bold>
{language}
</Text>
)}
<Text>{code}</Text>
</Box>
);
}