UNPKG

@wix/design-system

Version:

@wix/design-system

19 lines 543 B
import { baseUniDriverFactory } from '../utils/test-utils/unidriver'; export const skeletonRectangleDriverFactory = (base) => { return { ...baseUniDriverFactory(base), /** * Gets the width */ getWidth: () => base.attr('data-width'), /** * Gets the height */ getHeight: () => base.attr('data-height'), /** * Gets the skin */ getSkin: () => base.attr('data-skin'), }; }; //# sourceMappingURL=SkeletonRectangle.uni.driver.js.map