UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 2.16 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNfcFilled = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM16.0263 6.49988C15.8192 6.14116 15.3605 6.01826 15.0018 6.22536C14.643 6.43247 14.5201 6.89116 14.7272 7.24988C15.561 8.69406 16 10.3323 16 11.9999C16 13.6675 15.561 15.3057 14.7272 16.7499C14.5201 17.1086 14.643 17.5673 15.0018 17.7744C15.3605 17.9815 15.8192 17.8586 16.0263 17.4999C16.9917 15.8277 17.5 13.9308 17.5 11.9999C17.5 10.069 16.9917 8.17209 16.0263 6.49988ZM12.2697 7.22536C12.6284 7.01826 13.0871 7.14116 13.2942 7.49988C14.0841 8.86805 14.5 10.4201 14.5 11.9999C14.5 13.5797 14.0841 15.1317 13.2942 16.4999C13.0871 16.8586 12.6284 16.9815 12.2697 16.7744C11.911 16.5673 11.7881 16.1086 11.9952 15.7499C12.6535 14.6097 13 13.3164 13 11.9999C13 10.6834 12.6535 9.39003 11.9952 8.24988C11.7881 7.89116 11.911 7.43247 12.2697 7.22536ZM9.53766 8.22536C9.89638 8.01826 10.3551 8.14116 10.5622 8.49988C11.1766 9.56402 11.5 10.7711 11.5 11.9999C11.5 13.2286 11.1766 14.4357 10.5622 15.4999C10.3551 15.8586 9.89638 15.9815 9.53766 15.7744C9.17894 15.5673 9.05603 15.1086 9.26314 14.7499C9.74586 13.9138 10 12.9653 10 11.9999C10 11.0344 9.74586 10.086 9.26314 9.24988C9.05603 8.89116 9.17894 8.43247 9.53766 8.22536ZM6.80561 9.22536C7.16433 9.01826 7.62302 9.14116 7.83013 9.49988C8.26897 10.26 8.5 11.1222 8.5 11.9999C8.5 12.8776 8.26897 13.7398 7.83013 14.4999C7.62302 14.8586 7.16433 14.9815 6.80561 14.7744C6.44689 14.5673 6.32398 14.1086 6.53109 13.7499C6.83828 13.2178 7 12.6143 7 11.9999C7 11.3855 6.83828 10.7819 6.53109 10.2499C6.32398 9.89116 6.44689 9.43247 6.80561 9.22536Z" }) })); }; IconNfcFilled.iconName = "nfc--filled"; export default IconNfcFilled;