UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

10 lines 267 B
import { Text } from 'ink'; import React from 'react'; /** * `FilePath` displays a path to a file. */ const FilePath = ({ filePath }) => { return React.createElement(Text, { italic: true }, filePath); }; export { FilePath }; //# sourceMappingURL=FilePath.js.map