mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 23:05:28 +00:00
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
export default function(clickable, is) {
|
|
return function(obj) {
|
|
return {
|
|
...obj,
|
|
...{
|
|
cancel: clickable('[type=reset]'),
|
|
cancelIsEnabled: is(':not(:disabled)', '[type=reset]'),
|
|
},
|
|
};
|
|
};
|
|
}
|