no-mui-icons-filled
Version:
Filled (standard) Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 544 B
JSX
export function WarningAmberFilledIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-filled-icon no-mui-warning-amber-filled-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><g><path d="M12,5.99L19.53,19H4.47L12,5.99 M12,2L1,21h22L12,2L12,2z"/><polygon points="13,16 11,16 11,18 13,18"/><polygon points="13,10 11,10 11,15 13,15"/></g></g></g></svg>
);
}