react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 707 B
JavaScript
import React from 'react';
export default function GooglePhotosIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-google-photos ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10 13c.55 0 1 .18 1.41.57.39.39.59.87.59 1.43v7c0 .17-.09.27-.28.27-.06 0-.14-.05-.22-.14L7 17.67V13h3m2.5-11.12L17 6.33V11h-3c-.55 0-1-.18-1.41-.57C12.2 10.04 12 9.56 12 9V2c0-.17.09-.27.28-.27.06 0 .14.05.22.15M22 12c.17 0 .27.09.27.28 0 .06-.05.14-.14.22L17.67 17H13v-3c0-.55.18-1 .57-1.41.39-.39.87-.59 1.43-.59h7M6.33 7H11v3c0 .55-.18 1-.57 1.41-.39.39-.87.59-1.43.59H2c-.17 0-.27-.09-.27-.28 0-.06.05-.14.15-.22L6.33 7z" />
</svg>
);
}