@icons-pack/react-simple-icons
Version:
This package provides the Simple Icons packaged as a set of React components.
28 lines (25 loc) • 2.04 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import * as React from 'react';
const defaultColor = "#DC002B";
const SiGsma = React.forwardRef(function SiGsma2({ title = "GSMA", color = "currentColor", size = 24, ...others }, ref) {
if (color === "default") {
color = defaultColor;
}
return /* @__PURE__ */ jsxs(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
fill: color,
viewBox: "0 0 24 24",
ref,
...others,
children: [
/* @__PURE__ */ jsx("title", { children: title }),
/* @__PURE__ */ jsx("path", { d: "M5.484 11.788v.422c0 .515-.123.84-.38 1.095-.345.343-.99.575-2.24.575-1.45 0-2.053-.297-2.394-.638C.173 12.946 0 12.53 0 12c0-.502.156-.934.47-1.247.34-.338 1.02-.633 2.404-.633 1.099 0 1.915.182 2.355.386v.752c-.522-.265-1.357-.468-2.36-.468-.986 0-1.506.176-1.735.404-.188.187-.285.446-.285.806 0 .378.104.63.28.807.235.233.68.422 1.736.422.84 0 1.39-.138 1.6-.347a.58.58 0 0 0 .177-.444h-2.21v-.65h3.052Zm.84-1.234c.264-.263.785-.434 2.055-.434.995 0 1.791.145 2.275.337v.712c-.552-.233-1.477-.404-2.273-.404-.972 0-1.277.085-1.395.203a.306.306 0 0 0-.085.227c0 .09.025.162.075.211.11.11.388.165 1.526.215 1.508.068 1.97.183 2.228.44.147.146.226.373.226.632 0 .271-.057.524-.256.722-.263.26-.793.465-2.166.465-1.016 0-2.008-.16-2.57-.402v-.713c.54.255 1.694.47 2.57.47.973 0 1.345-.072 1.492-.218a.316.316 0 0 0 .092-.236c0-.1-.024-.176-.082-.234-.109-.108-.307-.156-1.587-.218-1.428-.065-1.913-.186-2.174-.446-.145-.144-.211-.351-.211-.611 0-.266.056-.515.26-.718Zm10.212-.342-1.954 3.063-1.95-3.063h-1.09v3.576h.826V11.19L14 13.788h1.13l1.63-2.584.002 2.584h.839v-3.576h-1.066Zm3.247 2.118h2.25l-1.127-1.642-1.123 1.642Zm1.707-2.118L24 13.788h-.967l-.55-.803h-3.149l-.55.803h-.928l2.51-3.576h1.124Zm1.597.536h-.095v-.45h-.17v-.087h.435v.088h-.17v.45Zm.5-.132h-.004l-.168-.251v.383h-.092v-.537h.1l.163.254.164-.254h.1v.537h-.094v-.385l-.17.253Z" })
]
}
);
});
export { SiGsma as default, defaultColor };