UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.57 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoSlackColor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fill: "#DF1D5A", d: "M4.89 16.266c1.042 0 1.892-.85 1.892-1.891v-1.891H4.89c-1.04 0-1.891.85-1.891 1.89s.85 1.891 1.89 1.891M9.625 12.484c-1.04 0-1.89.85-1.89 1.89v4.735c0 1.04.85 1.891 1.89 1.891s1.891-.85 1.891-1.89v-4.735c0-1.041-.85-1.891-1.89-1.891" }), _jsx("path", { fill: "#2DB67C", d: "M17.218 9.625c0-1.04.85-1.89 1.89-1.89S21 8.585 21 9.625s-.85 1.891-1.891 1.891h-1.891zM14.374 11.516c1.041 0 1.891-.85 1.891-1.89V4.89c0-1.04-.85-1.891-1.89-1.891s-1.892.85-1.892 1.89v4.735c0 1.041.85 1.891 1.891 1.891" }), _jsx("path", { fill: "#36C5EF", d: "M9.625 6.782c-1.04 0-1.89-.85-1.89-1.891S8.585 3 9.625 3s1.891.85 1.891 1.89v1.892zM11.516 9.625c0-1.04-.85-1.89-1.89-1.89H4.89C3.85 7.735 3 8.585 3 9.625s.85 1.891 1.89 1.891h4.735c1.041 0 1.891-.85 1.891-1.89" }), _jsx("path", { fill: "#EBB12D", d: "M14.374 17.218c1.041 0 1.891.85 1.891 1.891S15.415 21 14.375 21s-1.892-.85-1.892-1.89v-1.892zM12.483 14.375c0 1.04.85 1.89 1.891 1.89h4.735c1.04 0 1.89-.85 1.89-1.89s-.85-1.891-1.89-1.891h-4.735c-1.04 0-1.89.85-1.89 1.89" })] })); }; IconLogoSlackColor.iconName = "logo-slack--color"; export default IconLogoSlackColor;