15 lines
458 B
TypeScript
15 lines
458 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
const DragHandleIcon: React.FC = () => (
|
||
|
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
|
||
|
|
<circle cx="5" cy="4" r="1.5" />
|
||
|
|
<circle cx="11" cy="4" r="1.5" />
|
||
|
|
<circle cx="5" cy="8" r="1.5" />
|
||
|
|
<circle cx="11" cy="8" r="1.5" />
|
||
|
|
<circle cx="5" cy="12" r="1.5" />
|
||
|
|
<circle cx="11" cy="12" r="1.5" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default DragHandleIcon;
|