@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 838 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconSystem = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { viewBox: "0 0 20 20", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10ZM10.5 16.9824C14.1326 16.726 17 13.6979 17 10C17 6.30212 14.1326 3.27396 10.5 3.01758V16.9824ZM9.5 16.9824V3.01758C5.86736 3.27396 3 6.30212 3 10C3 13.6979 5.86736 16.726 9.5 16.9824Z" }) }));
};
IconSystem.iconName = "system";
export default IconSystem;