@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
13 lines • 317 B
JavaScript
import { Text } from 'ink';
import React from 'react';
/**
* `Command` displays a command as non-dimmed text.
*/
const Command = ({ command }) => {
return React.createElement(Text, { color: "magentaBright" },
"`",
command,
"`");
};
export { Command };
//# sourceMappingURL=Command.js.map