UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 801 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoAdobeColor = (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: "M9.40091 3H1.99976V20.7001L9.40091 3Z", fill: "#FA0C00" }), _jsx("path", { d: "M14.6082 3H21.9997V20.7001L14.6082 3Z", fill: "#FA0C00" }), _jsx("path", { d: "M16.7151 20.7002L12.0044 9.52369L8.76913 17.1418H12.2166L13.6245 20.7002H16.7151Z", fill: "#FA0C00" })] })); }; IconLogoAdobeColor.iconName = "logo-adobe--color"; export default IconLogoAdobeColor;