no-mui-icons-two-tone
Version:
Two tone Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 451 B
JSX
export function WrapTextTwoToneIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-two-tone-icon no-mui-wrap-text-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="M4 17h6v2H4zm13-6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4zM4 5h16v2H4z"/></svg>
);
}