react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 515 B
JavaScript
import React from 'react';
export default function GestureSwipeVerticalIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-gesture-swipe-vertical ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M4 3L1 6h2v3H1l3 3 3-3H5V6h2L4 3m7 5a1 1 0 0 0-1 1v10l-3.2-1.72h-.22c-.28 0-.55.11-.74.32l-.74.77 4.9 4.2c.26.28.62.43 1 .43h6.5a1.5 1.5 0 0 0 1.5-1.5v-4.36c0-.58-.32-1.11-.85-1.35l-4.94-2.19-1.21-.13V9a1 1 0 0 0-1-1z" />
</svg>
);
}