no-mui-icons-outlined
Version:
Outlined Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 451 B
JSX
export function NavigationOutlinedIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-outlined-icon no-mui-navigation-outlined-icon ${ className ?? '' }`} {...props} xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 7.27l4.28 10.43-3.47-1.53-.81-.36-.81.36-3.47 1.53L12 7.27M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z"/></svg>
);
}