no-mui-icons-outlined
Version:
Outlined Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 604 B
JSX
export function RepeatOnOutlinedIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-outlined-icon no-mui-repeat-on-outlined-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="M21,1H3C1.9,1,1,1.9,1,3v18c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C23,1.9,22.1,1,21,1z M19,19H6.83l1.58,1.58L7,22l-4-4 l4-4l1.41,1.42L6.83,17H17v-4h2V19z M17,10l-1.41-1.42L17.17,7H7v4H5V5h12.17l-1.58-1.58L17,2l4,4L17,10z"/></g></svg>
);
}