react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 450 B
JavaScript
import React from 'react';
export default function SourceCommitStartNextLocalIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-source-commit-start-next-local ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m-1 12v-2h2v2h-2z" />
</svg>
);
}