@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.61 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoPlayStationColor = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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: "M1.44527 15.9029C0.620752 16.4525 0.895591 17.4969 2.65456 17.9916C4.46851 18.5963 6.44735 18.7612 8.37123 18.4314C8.48116 18.4314 8.5911 18.3764 8.64607 18.3764V16.5075L6.77716 17.1121C6.06258 17.332 5.34799 17.387 4.63341 17.2221C4.08373 17.0572 4.19367 16.7274 4.85328 16.4525L8.64607 15.1333V13.0995L3.36915 14.9134C2.70953 15.1333 2.04992 15.4631 1.44527 15.9029ZM14.1978 7.65766V12.9896C16.4515 14.0889 18.2105 12.9896 18.2105 10.1312C18.2105 7.21792 17.1661 5.89869 14.1429 4.8543C12.5488 4.30462 10.8998 3.80991 9.25072 3.4801V19.3658L13.0985 20.5202V7.16295C13.0985 6.55831 13.0985 6.11856 13.5382 6.28347C14.1429 6.44837 14.1978 7.05302 14.1978 7.65766ZM21.3437 14.6386C19.7496 14.0889 18.0456 13.869 16.3965 14.0339C15.5171 14.0889 14.6925 14.3088 13.923 14.5836L13.7581 14.6386V16.7823L17.331 15.4631C18.0456 15.2432 18.7602 15.1883 19.4747 15.3532C20.0244 15.5181 19.9145 15.8479 19.2549 16.1227L13.7581 18.1565V20.2453L21.3437 17.442C21.8933 17.2221 22.3881 16.9472 22.8278 16.5075C23.2126 15.9578 23.0477 15.1883 21.3437 14.6386Z", fill: "#0070D1" }) }));
};
IconLogoPlayStationColor.iconName = "logo-play-station--color";
export default IconLogoPlayStationColor;