react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 452 B
JavaScript
import React from 'react';
export default function SkipNextCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-skip-next-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10A10 10 0 0 0 12 2m0 2c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8M8 8v8l5-4m1-4v8h2V8" />
</svg>
);
}