import React from 'react' const SettingWithInput = ({ title, description, value, handleChange, name, handleBlur, success }) => { return (

{title}

px {success === true &&

success

}

{description}

) } export default SettingWithInput