import React from 'react'; export interface IFormLabel { className?: string; children: any; htmlFor?: string; [x: string]: any; } export const FormLabel: React.FC = (props) => { const { children, className = '', htmlFor, ...otherProps } = props; return ( ); };