@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
17 lines (16 loc) • 377 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface FormitemProperties {
theme?: Theme;
level?: number;
style?: React.CSSProperties;
className?: string;
children?: React.ReactNode;
}
/**
* Renders a form item.
*
* @param properties
*/
declare const Formitem: React.FC<FormitemProperties>;
export default Formitem;