fiemwl / bin /cli /tui-components /CodeBlock.jsx
automindy's picture
Upload 2581 files
5448d8b verified
Raw
History Blame Contribute Delete
366 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>
);
}