UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.43 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoGooglePhotos = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M21.55 10.9999H16.92C17.87 9.93988 18.46 8.53988 18.46 6.99988C18.46 3.68988 15.77 0.999878 12.46 0.999878C11.65 0.999878 11 1.64988 11 2.44988V7.07988C9.94 6.12988 8.54 5.54988 7 5.54988C3.69 5.54988 1 8.23988 1 11.5499C1 12.3499 1.65 12.9999 2.46 12.9999H7.09C6.14 14.0599 5.55 15.4599 5.55 16.9999C5.55 20.3099 8.24 22.9999 11.55 22.9999C12.35 22.9999 13 22.3499 13 21.5499V16.9199C14.06 17.8699 15.46 18.4599 17 18.4599C20.31 18.4599 23 15.7699 23 12.4599C23 11.6499 22.35 10.9999 21.55 10.9999ZM13 3.03988C14.95 3.29988 16.46 4.97988 16.46 6.99988C16.46 9.01988 14.95 10.6999 13.01 10.9599V3.03988H13ZM7 7.54988C9.02 7.54988 10.7 9.05988 10.96 10.9999H3.04C3.3 9.04988 4.98 7.54988 7 7.54988ZM11 20.9599C9.05 20.6999 7.55 19.0199 7.55 16.9999C7.55 14.9799 9.06 13.2999 11 13.0399V20.9599ZM17 16.4499C14.98 16.4499 13.3 14.9399 13.04 12.9999H20.97C20.7 14.9499 19.02 16.4499 17 16.4499Z" }) })); }; IconLogoGooglePhotos.iconName = "logo-google-photos"; export default IconLogoGooglePhotos;