wix-style-react
Version:
wix-style-react
11 lines (9 loc) • 323 B
JavaScript
import { boxDriverFactory as publicDriverFactory } from './Box.driver';
export const boxPrivateDriverFactory = base => {
return {
...publicDriverFactory(base),
hasChild: () => base.$(`[data-hook="box-child"]`),
hasClass: className => base.hasClass(className),
getStyle: () => base.attr('style'),
};
};