UNPKG

@plurid/plurid-ui-components-react

Version:

Plurid User Interface Components for React

12 lines (11 loc) 334 B
import React from 'react'; import { Theme } from '@plurid/plurid-themes'; export interface InputDescriptorProperties { name: string; show: boolean; theme?: Theme; style?: React.CSSProperties; className?: string; } declare const InputDescriptor: React.FC<InputDescriptorProperties>; export default InputDescriptor;