iconoir/packages/iconoir-react/src/GitCommit.tsx
2022-06-08 08:59:39 +00:00

31 lines
643 B
TypeScript

import * as React from 'react';
function SvgGitCommit(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 15a3 3 0 100-6 3 3 0 000 6zM9 12H3M15 12h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCommit);
export default ForwardRef;