/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views/Components/Input
NameSizeModeActions
index.js6530644editdlrm
style.module.scss3650644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/Views/Components/Input/index.js (653B)
import PropTypes from 'prop-types'; import classNames from 'classnames'; import styles from './style.module.scss'; const Input = ({type, name, onChange, value, className, ...rest}) => { return ( ); }; Input.propTypes = { // Input type type: PropTypes.string.isRequired, // On change event onChange: PropTypes.func, // Input value value: PropTypes.string, }; export default Input;