react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 365 B
JavaScript
import React from 'react';
export default function TildeIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-tilde ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M2 15s0-6 6-6c4 0 4.5 3.5 7.5 3.5 4 0 4-3.5 4-3.5H22s0 6-6 6c-4 0-5.5-3.5-7.5-3.5-4 0-4 3.5-4 3.5H2" />
</svg>
);
}