wix-style-react
Version:
wix-style-react
14 lines (10 loc) • 415 B
JavaScript
import inputAreaWithLabelCompositeDriverFactory from '../Composite/InputAreaWithLabelComposite/InputAreaWithLabelComposite.driver';
const textFieldDriverFactory = ({ element }) => {
const input = element.querySelector('input.input');
return {
...inputAreaWithLabelCompositeDriverFactory({ element }),
getInput: () => input,
hasInput: () => !!input,
};
};
export default textFieldDriverFactory;