UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.3 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNfc = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("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: "M15.0018 6.22548C15.3605 6.01837 15.8192 6.14128 16.0263 6.5C16.9917 8.17221 17.5 10.0691 17.5 12C17.5 13.9309 16.9917 15.8278 16.0263 17.5C15.8192 17.8587 15.3605 17.9816 15.0018 17.7745C14.643 17.5674 14.5201 17.1087 14.7272 16.75C15.561 15.3058 16 13.6676 16 12C16 10.3324 15.561 8.69418 14.7272 7.25C14.5201 6.89128 14.643 6.43259 15.0018 6.22548Z" }), _jsx("path", { d: "M13.2942 7.5C13.0871 7.14128 12.6284 7.01837 12.2697 7.22548C11.911 7.43259 11.7881 7.89128 11.9952 8.25C12.6535 9.39014 13 10.6835 13 12C13 13.3165 12.6535 14.6099 11.9952 15.75C11.7881 16.1087 11.911 16.5674 12.2697 16.7745C12.6284 16.9816 13.0871 16.8587 13.2942 16.5C14.0841 15.1318 14.5 13.5798 14.5 12C14.5 10.4202 14.0841 8.86817 13.2942 7.5Z" }), _jsx("path", { d: "M9.53766 8.22548C9.89638 8.01837 10.3551 8.14128 10.5622 8.5C11.1766 9.56413 11.5 10.7712 11.5 12C11.5 13.2288 11.1766 14.4359 10.5622 15.5C10.3551 15.8587 9.89638 15.9816 9.53766 15.7745C9.17894 15.5674 9.05603 15.1087 9.26314 14.75C9.74587 13.9139 10 12.9655 10 12C10 11.0345 9.74586 10.0861 9.26314 9.25C9.05603 8.89128 9.17894 8.43259 9.53766 8.22548Z" }), _jsx("path", { d: "M7.83013 9.5C7.62302 9.14128 7.16433 9.01837 6.80561 9.22548C6.44689 9.43259 6.32398 9.89128 6.53109 10.25C6.83828 10.7821 7 11.3856 7 12C7 12.6144 6.83828 13.2179 6.53109 13.75C6.32398 14.1087 6.44689 14.5674 6.80561 14.7745C7.16433 14.9816 7.62302 14.8587 7.83013 14.5C8.26897 13.7399 8.5 12.8777 8.5 12C8.5 11.1223 8.26897 10.2601 7.83013 9.5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5Z" })] })); }; IconNfc.iconName = "nfc"; export default IconNfc;