import PropTypes from "prop-types"; /** * Primary UI component for user interaction */ export const TextInputBasic = ({ label, placeholder }) => { return (

{label}

); }; TextInputBasic.propTypes = { /** * Icon to place in text input */ label: PropTypes.string, /** * Input placeholder */ placeholder: PropTypes.string, };