@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
6 lines (5 loc) • 316 B
TypeScript
import { InputProps as ChakraInputProps } from '@chakra-ui/react';
export interface InputProps extends Omit<ChakraInputProps, 'size'> {
size?: 'sm' | 'md' | 'lg' | '2xl';
}
export declare const Input: import('react').ForwardRefExoticComponent<ChakraInputProps & import('react').RefAttributes<HTMLInputElement>>;