@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.11 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoAdobeLightroomColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M17.7719 3H6.22811C4.44527 3 3 4.44527 3 6.22811V17.7719C3 19.5548 4.44527 21 6.22811 21H17.7719C19.5548 21 21 19.5548 21 17.7719V6.22811C21 4.44527 19.5548 3 17.7719 3Z", fill: "#001E36" }), _jsx("path", { d: "M6.9895 7.7782H9.29298V14.1066H13.1073V16.0757H6.9895V7.7782ZM16.5377 9.49962C17.0456 9.49962 17.4542 9.56153 17.6399 9.62345V11.3077C17.4914 11.2706 17.2065 11.2458 16.9712 11.2458C16.513 11.2458 16.253 11.283 16.0176 11.3697V16.0757H13.8503V10.0445C14.6306 9.69776 15.4108 9.49962 16.5377 9.49962Z", fill: "#31A8FF" })] }));
};
IconLogoAdobeLightroomColor.iconName = "logo-adobe-lightroom--color";
export default IconLogoAdobeLightroomColor;