UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

10 lines (9 loc) 257 B
import React from 'react'; import { FieldProps } from '../../@types/index'; declare type TagField = { color?: string; icon?: string; visible?: boolean; }; declare const BooleanField: React.FC<FieldProps & TagField>; export default BooleanField;