@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.24 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoAdobeIllustrator = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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: "M11.2344 12.8428H9.42676L10.3311 10.0566L11.2344 12.8428Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.7715 3C19.5543 3 21 4.44568 21 6.22852V17.7715C21 19.5543 19.5543 21 17.7715 21H6.22852C4.44568 21 3 19.5543 3 17.7715V6.22852C3 4.44568 4.44568 3 6.22852 3H17.7715ZM9.09277 7.77832L6.0332 16.0752H8.36133L8.77051 14.8125H11.8789L12.2871 16.0752H14.7148L11.7422 7.77832H9.09277ZM15.1328 9.61035V16.0752H17.2998V9.61035H15.1328ZM16.2227 7.34473C15.5291 7.34473 15.0703 7.7288 15.0703 8.32324C15.0705 8.92985 15.5045 9.32617 16.2227 9.32617C16.9034 9.32601 17.3367 8.91735 17.3369 8.32324C17.3369 7.74131 16.9036 7.34488 16.2227 7.34473Z" })] }));
};
IconLogoAdobeIllustrator.iconName = "logo-adobe-illustrator";
export default IconLogoAdobeIllustrator;