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