diff --git a/static/app/components/dnd/dragReorderButton.tsx b/static/app/components/dnd/dragReorderButton.tsx new file mode 100644 index 00000000000000..00e6b800816123 --- /dev/null +++ b/static/app/components/dnd/dragReorderButton.tsx @@ -0,0 +1,28 @@ +import {Button, type ButtonProps} from '@sentry/scraps/button'; + +import {IconGrabbable} from 'sentry/icons'; +import {t} from 'sentry/locale'; +import type {IconSize} from 'sentry/utils/theme'; + +type DragReorderButtonProps = Omit & { + iconSize?: IconSize; +}; + +export function DragReorderButton({ + size = 'zero', + iconSize = 'xs', + ref, + ...props +}: DragReorderButtonProps) { + return ( +