@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
10 lines (9 loc) • 392 B
TypeScript
import React from 'react';
import type { InputProps } from '../../ui/Input/interfaces';
import { FormItemProps } from '../Item';
import { InputComponentWithName } from '../interfaces';
export interface TextInputProps extends InputProps, FormItemProps {
name: string;
onChange?: (value: any) => void;
}
export declare const TextInput: InputComponentWithName<React.FC<TextInputProps>>;