nice-ui
Version:
React design system, components, and utilities
16 lines (15 loc) • 428 B
TypeScript
import * as React from 'react';
export interface Props {
title?: React.ReactNode;
label?: React.ReactNode;
actionLabel?: React.ReactNode;
value: string;
placeholder?: string;
readonly?: boolean;
onChange: (value: string) => void;
onSubmit: () => void;
onClick?: () => void;
onTabBack?: () => void;
onDeleteBefore?: () => void;
}
export declare const CommandArgColor: React.FC<Props>;