@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.16 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconMarketplaceCreate = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("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: "M8.98237 9.93192L8.3915 11.3106L5.19145 9.93919C3.86199 9.36942 3 8.06218 3 6.61577C3 4.61884 4.61884 3 6.61577 3C8.06218 3 9.36942 3.86199 9.93919 5.19145L11.3106 8.3915C11.5704 8.99758 12.4296 8.99758 12.6894 8.3915L14.0608 5.19145C14.6306 3.86199 15.9378 3 17.3842 3C19.3812 3 21 4.61884 21 6.61577C21 8.06218 20.138 9.36942 18.8085 9.93919L15.6085 11.3106C15.0024 11.5704 15.0024 12.4296 15.6085 12.6894L18.8085 14.0608C20.138 14.6306 21 15.9378 21 17.3842C21 19.3812 19.3812 21 17.3842 21C15.9378 21 14.6306 20.138 14.0608 18.8085L12.6894 15.6085C12.4296 15.0024 11.5704 15.0024 11.3106 15.6085L9.93919 18.8085C9.36942 20.138 8.06218 21 6.61577 21C4.61884 21 3 19.3812 3 17.3842C3 15.9378 3.86199 14.6306 5.19145 14.0608L8.3915 12.6894C8.99758 12.4296 8.99758 11.5704 8.3915 11.3106L8.98237 9.93192C10.8006 10.7112 10.8006 13.2888 8.98238 14.0681L5.78233 15.4395C5.00439 15.7729 4.5 16.5379 4.5 17.3842C4.5 18.5527 5.44726 19.5 6.61577 19.5C7.46214 19.5 8.22707 18.9956 8.56048 18.2177L9.93192 15.0176C10.7112 13.1994 13.2888 13.1994 14.0681 15.0176L15.4395 18.2177C15.7729 18.9956 16.5379 19.5 17.3842 19.5C18.5527 19.5 19.5 18.5527 19.5 17.3842C19.5 16.5379 18.9956 15.7729 18.2177 15.4395L15.0176 14.0681C13.1994 13.2888 13.1994 10.7112 15.0176 9.93192L18.2177 8.56048C18.9956 8.22707 19.5 7.46214 19.5 6.61577C19.5 5.44726 18.5527 4.5 17.3842 4.5C16.5379 4.5 15.7729 5.00439 15.4395 5.78233L14.0681 8.98238C13.2888 10.8006 10.7112 10.8006 9.93192 8.98238L8.56048 5.78233C8.22707 5.00439 7.46214 4.5 6.61577 4.5C5.44726 4.5 4.5 5.44726 4.5 6.61577C4.5 7.46214 5.00439 8.22707 5.78233 8.56048L8.98237 9.93192Z" }) }));
};
IconMarketplaceCreate.iconName = "marketplace-create";
export default IconMarketplaceCreate;