react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 466 B
JavaScript
import React from 'react';
export default function TableTennisIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-table-tennis ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M18.5 14c1.4 0 2.5 1.1 2.5 2.5S19.9 19 18.5 19 16 17.9 16 16.5s1.1-2.5 2.5-2.5M7 15s1 1 1 2v3.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V17c0-1 1-2 1-2H7m1-1h3s5 0 5-5-4-7-6.5-7S3 4 3 9s5 5 5 5z" />
</svg>
);
}