UNPKG

@educrib/forms

Version:

Data entry library for Educrib Ecosystem

31 lines (23 loc) 841 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; declare function Id(): react_jsx_runtime.JSX.Element; declare function Icon({ label }: { label?: Boolean; }): react_jsx_runtime.JSX.Element; declare function Thumbnail({ label }: { label?: boolean; }): react_jsx_runtime.JSX.Element; declare function Title({ placeholder, label, }: { placeholder?: string; label?: boolean; }): react_jsx_runtime.JSX.Element; declare function FieldGroup({ children }: { children: ReactNode; }): react_jsx_runtime.JSX.Element; type BooleanProps = { name: string; placeholder: string; label?: boolean; }; declare function Boolean$1({ name, placeholder, label, }: BooleanProps): react_jsx_runtime.JSX.Element; export { Boolean$1 as Boolean, FieldGroup, Icon, Id, Thumbnail, Title };