no-mui-icons-two-tone
Version:
Two tone Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 568 B
JSX
export function CommitTwoToneIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-two-tone-icon no-mui-commit-two-tone-icon ${ className ?? '' }`} {...props} xmlns="http://www.w3.org/2000/svg" enableBackground="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><rect fill="none" height="24" width="24"/></g><g><path d="M16.9,11L16.9,11c-0.46-2.28-2.48-4-4.9-4s-4.44,1.72-4.9,4h0H2v2h5.1h0c0.46,2.28,2.48,4,4.9,4s4.44-1.72,4.9-4h0H22v-2 H16.9z M12,15c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,15,12,15z"/></g></svg>
);
}