Add roadmap management to Site settings (#123)

This commit is contained in:
Riccardo Graziosi
2022-06-12 15:22:06 +02:00
committed by GitHub
parent db674eaf6a
commit e2065b2c5e
31 changed files with 495 additions and 60 deletions

View File

@@ -1,11 +1,11 @@
import * as React from 'react';
const DragZone = ({dndProvided, isDragDisabled}) => (
const DragZone = ({dndProvided, isDragDisabled, color = 'black'}) => (
<span
className={`drag-zone${isDragDisabled ? ' drag-zone-disabled' : ''}`}
{...dndProvided.dragHandleProps}
>
<span className="drag-icon"></span>
<span className={`drag-icon${color === 'white' ? ' drag-icon-white' : ''}`}></span>
</span>
);