import React from 'react'; import cn from 'classnames'; interface Props { className?: string; label?: string; [x: string]: any; } export default (props: Props) => { const { className = '', label = '', ...rest } = props; return ( ); };