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.

13 lines (12 loc) 360 B
import React from 'react'; export interface FormItemProps { label?: string; error?: string; showError?: boolean; required?: boolean; columnSpan?: 1 | 2; onLabelClick?: React.MouseEventHandler<HTMLLabelElement>; labelAs?: string | React.JSXElementConstructor<any>; } declare const Item: React.FC<FormItemProps>; export default Item;