react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 531 B
JavaScript
import React from 'react';
export default function ContentSaveAlertOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-content-save-alert-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 7v5h-2V7h2m-2 9h2v-2h-2v2m-2-8v10c0 1.11-.89 2-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h10l4 4m-2 .83L13.17 6H4v12h12V8.83M12 7H5v3h7V7m-2.25 5.25c-1.25 0-2.25 1.01-2.25 2.25s1 2.26 2.25 2.26S12 15.75 12 14.5s-1-2.25-2.25-2.25z" />
</svg>
);
}