@roots/bud
Version:
Configurable, extensible build tools for modern single and multi-page web applications
8 lines (7 loc) • 471 B
JavaScript
import { jsxs as _jsxs, jsx as _jsx } from "@roots/bud-support/jsx-runtime";
/* eslint-disable react/no-unescaped-entities */
import { LabelBox } from '@roots/bud/cli/components/LabelBox';
import { Text } from '@roots/bud-support/ink';
export const BuildInfo = ({ name, time, }) => {
return (_jsx(LabelBox, { label: name, children: _jsxs(Text, { italic: true, children: ["Completed a dry run of your project's build (executed in ", time, ` `, "seconds)."] }) }));
};