import React from 'react'; import Line from '../Line'; import styles from './styles.scss'; type InputLineProps = { label?: React.ReactNode; input?: React.ReactNode; className?: string; onClick?: (...args: any[]) => any; noBorder?: boolean; }; const InputLine: React.FC = (props) => { return (
{props.label}
{props.children}
); }; export default InputLine;