no-mui-icons-two-tone
Version:
Two tone Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 551 B
JSX
export function ChecklistRtlTwoToneIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-two-tone-icon no-mui-checklist-rtl-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"><rect fill="none" height="24" width="24"/><path d="M11,7H2v2h9V7z M11,15H2v2h9V15z M16.34,11l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,5.34L16.34,11z M16.34,19 l-3.54-3.54l1.41-1.41l2.12,2.12l4.24-4.24L22,13.34L16.34,19z"/></svg>
);
}