no-mui-icons-two-tone
Version:
Two tone Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 481 B
JSX
export function WbShadeTwoToneIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-two-tone-icon no-mui-wb-shade-two-tone-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><g><path d="M14,12v2.5l5.5,5.5H22L14,12z M14,20h3l-3-3V20z M8,4l-6,6h2v10h8V10h2L8,4z M9,14H7v-4h2V14z"/></g></g></svg>
);
}