pouncejs
Version:
A collection of UI components from Panther labs
16 lines (15 loc) • 489 B
TypeScript
import React from 'react';
export declare type InputControlProps = {
/** @ignore */
hidden?: boolean;
/** The style of the input */
variant?: 'solid' | 'outline';
/** Whether the input asoociated with the label has an error */
invalid?: boolean;
/** Whether the input is disabled */
disabled?: boolean;
/** Whether the input is required */
required?: boolean;
};
declare const InputControl: React.FC<InputControlProps>;
export default InputControl;