react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 419 B
JavaScript
import React from 'react';
export default function ChessPawnIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-chess-pawn ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M19 22H5v-2h14v2m-3-4L13.2 7.74a2.99 2.99 0 0 0 1.54-3.95 2.988 2.988 0 0 0-3.95-1.54A2.988 2.988 0 0 0 9.25 6.2c.3.69.85 1.24 1.54 1.54L8 18h8z" />
</svg>
);
}