UNPKG

@wix/design-system

Version:

@wix/design-system

14 lines 414 B
import { classes, st } from './DraggableContainer.st.css.js'; export function useDraggableContainer(props) { const { draggable, dragging, dragDisabled, dim, highlight } = props; return { className: st(classes.root, { draggable, dragging, dragDisabled, dim, highlight, }), }; } //# sourceMappingURL=useDraggableContainer.js.map