UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.12 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconNumber6 = (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: "M15.8151 13.6659C15.8151 15.8499 14.1911 17.2779 12.1471 17.2779C9.15106 17.2779 8.18506 14.8419 8.18506 12.0979C8.18506 9.35392 9.17906 6.72192 12.2171 6.72192C13.9951 6.72192 15.4931 7.53392 15.4931 9.45192H13.4771C13.4771 8.51392 12.9451 8.09392 12.1471 8.09392C10.4531 8.09392 10.1731 10.4039 10.1591 11.7619C10.7331 10.7539 11.5731 10.3479 12.6791 10.3479C14.4431 10.3479 15.8151 11.6359 15.8151 13.6659ZM13.8691 13.7499C13.8691 12.6299 13.3371 11.7199 12.1891 11.7199C10.8731 11.7199 10.3831 12.6859 10.3831 13.7919C10.3831 14.9119 11.0271 15.8079 12.1471 15.8079C13.2951 15.8079 13.8691 14.8839 13.8691 13.7499Z" }) })); }; IconNumber6.iconName = "number6"; export default IconNumber6;