no-mui-icons-outlined
Version:
Outlined Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 562 B
JSX
export function DiamondOutlinedIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-outlined-icon no-mui-diamond-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="M19,3H5L2,9l10,12L22,9L19,3z M9.62,8l1.5-3h1.76l1.5,3H9.62z M11,10v6.68L5.44,10H11z M13,10h5.56L13,16.68V10z M19.26,8 h-2.65l-1.5-3h2.65L19.26,8z M6.24,5h2.65l-1.5,3H4.74L6.24,5z"/></g></svg>
);
}