no-mui-icons-filled
Version:
Filled (standard) Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 457 B
JSX
export function TextRotateUpFilledIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-filled-icon no-mui-text-rotate-up-filled-icon ${ className ?? '' }`} {...props} xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M3 12v1.5l11 4.75v-2.1l-2.2-.9v-5l2.2-.9v-2.1L3 12zm7 2.62l-5.02-1.87L10 10.88v3.74zm8-10.37l-3 3h2v12.5h2V7.25h2l-3-3z"/></svg>
);
}