react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 512 B
JavaScript
import React from 'react';
export default function ContentSaveSettingsOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-content-save-settings-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M7 22h2v2H7v-2m4 0h2v2h-2v-2m4 0h2v2h-2v-2m2-20H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6l-4-4m2 16H5V4h11.17L19 6.83V18m-7-7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3M6 5h9v4H6V5z" />
</svg>
);
}