UNPKG

nice-ui

Version:

React design system, components, and utilities

16 lines (15 loc) 429 B
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 CommandArgString: React.FC<Props>;