}
/>
@@ -258,3 +249,19 @@ export const VerticalBar: React.FC = () => {
/>
);
};
+
+const DragHandleIcon = styled(WBIcon).attrs({name: 'vertical-handle'})`
+ font-size: 26px;
+ border-radius: 50%;
+ color: gray300;
+ user-select: none;
+ cursor: grab;
+ &&&:hover {
+ background: gray100;
+ color: black;
+ }
+ &:active {
+ cursor: grabbing;
+ }
+`;
+DragHandle.displayName = 'S.DragHandle';