@roots/bud
Version:
Configurable, extensible build tools for modern single and multi-page web applications
11 lines (10 loc) • 433 B
TypeScript
import { type BoxProps, type ReactNode } from '@roots/bud-support/ink';
interface Props extends BoxProps {
children?: Array<ReactNode> | ReactNode;
color?: string;
contentFlexDirection?: `column` | `row`;
label?: string;
value?: string;
}
export declare const LabelBox: ({ children, color, contentFlexDirection, label, value, ...props }: Props) => import("@roots/bud-support/jsx-runtime").JSX.Element;
export {};