Potion/web/src/components/icons/DragIconSmall.tsx
2026-01-09 10:51:11 -07:00

8 lines
308 B
TypeScript

export default function DragIconSmall() {
return (
<svg className="text-gray-500 h-6 w-6" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 6H20M4 12H20M4 18H20" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
);
}