@apexcura/ui-builder
Version:
A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.
12 lines (11 loc) • 327 B
TypeScript
import React from 'react';
export interface FormInputLabelProps {
label?: string;
required?: boolean;
color?: string;
element?: 'input-radio' | string;
variant?: 'button' | 'default';
labelClassName?: string;
}
declare const FormInputLabel: React.FC<FormInputLabelProps>;
export default FormInputLabel;