Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const Grip = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Grip(props, ref) {
return (
<Icon {...props} name="Grip">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M10.75 5C10.75 6.10457 9.85457 7 8.75 7C7.64543 7 6.75 6.10457 6.75 5C6.75 3.89543 7.64543 3 8.75 3C9.85457 3 10.75 3.89543 10.75 5ZM10.75 12C10.75 13.1046 9.85457 14 8.75 14C7.64543 14 6.75 13.1046 6.75 12C6.75 10.8954 7.64543 10 8.75 10C9.85457 10 10.75 10.8954 10.75 12ZM8.75 21C9.85457 21 10.75 20.1046 10.75 19C10.75 17.8954 9.85457 17 8.75 17C7.64543 17 6.75 17.8954 6.75 19C6.75 20.1046 7.64543 21 8.75 21ZM17.2501 5C17.2501 6.10457 16.3546 7 15.2501 7C14.1455 7 13.2501 6.10457 13.2501 5C13.2501 3.89543 14.1455 3 15.2501 3C16.3546 3 17.2501 3.89543 17.2501 5ZM17.2501 12C17.2501 13.1046 16.3546 14 15.2501 14C14.1455 14 13.2501 13.1046 13.2501 12C13.2501 10.8954 14.1455 10 15.2501 10C16.3546 10 17.2501 10.8954 17.2501 12ZM15.2501 21C16.3546 21 17.2501 20.1046 17.2501 19C17.2501 17.8954 16.3546 17 15.2501 17C14.1455 17 13.2501 17.8954 13.2501 19C13.2501 20.1046 14.1455 21 15.2501 21Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
Grip.displayName = 'Grip'
export default Grip
|