// @flow import * as React from 'react'; import AccessibleSVG from '../accessible-svg'; type Props = { className?: string, color?: string, height?: number, title?: string, width?: number, }; const IconDrag = ({ className = '', color = '#aaa', height = 16, title, width = 16 }: Props) => ( ); export default IconDrag;