react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 342 B
JavaScript
import React from 'react';
export default function PageLastIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-page-last ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41M16 6h2v12h-2V6z" />
</svg>
);
}