no-mui-icons-two-tone
Version:
Two tone Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 532 B
JSX
export function AddBoxTwoToneIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-two-tone-icon no-mui-add-box-two-tone-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="M5 19h14V5H5v14zm2-8h4V7h2v4h4v2h-4v4h-2v-4H7v-2z" opacity=".3"/><path d="M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14zm-8-2h2v-4h4v-2h-4V7h-2v4H7v2h4z"/></svg>
);
}