UNPKG

@octopusdeploy/design-system-components

Version:
10 lines (9 loc) 355 B
import type { ReactNode } from "react"; export default function SortableItem({ id, name, label, customContent, onItemDeleted, onItemUpdated }: { id: string; name: string; label?: string; customContent?: ReactNode; onItemDeleted?: () => void; onItemUpdated?: (newValue: string) => void; }): import("react/jsx-runtime").JSX.Element;