UNPKG

@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) 359 B
import React from 'react'; export declare type InputSizeType = 'XS' | 'S' | 'M' | 'L'; export interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size' | 'type'> { size?: InputSizeType; type?: 'text' | 'number' | 'tel' | 'password' | 'search'; borderless?: boolean; alert?: boolean; suffix?: React.ReactNode; }