UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.83 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconPhone = (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: "M16.0392 15.5821C15.5757 16.0456 14.8648 16.1544 14.2838 15.8508C12.9853 15.1722 11.7916 14.2978 10.7469 13.2531C9.70218 12.2083 8.82783 11.0146 8.1492 9.71616C7.84555 9.13516 7.95438 8.42427 8.41793 7.96072L9.75633 6.62231L8.96047 4.5H4.99997C4.8558 4.5 4.74188 4.55836 4.67411 4.62851C4.61335 4.6914 4.59339 4.755 4.60171 4.82957C4.77339 6.36829 5.16114 7.87826 5.75595 9.31428C6.58516 11.3161 7.80054 13.1351 9.3327 14.6673C10.8649 16.1994 12.6838 17.4148 14.6857 18.244C16.1217 18.8389 17.6317 19.2266 19.1704 19.3983C19.2449 19.4066 19.3085 19.3867 19.3714 19.3259C19.4416 19.2581 19.4999 19.1442 19.4999 19V15.0395L17.3776 14.2437L16.0392 15.5821ZM14.9786 14.5214L16.4308 13.0692C16.7774 12.7226 17.2946 12.6105 17.7536 12.7826L20.1888 13.6959C20.6767 13.8788 20.9999 14.3452 20.9999 14.8663V19C20.9999 20.1046 20.1018 21.0115 19.004 20.889C17.3254 20.7018 15.6782 20.2788 14.1116 19.6299C11.9278 18.7253 9.9435 17.3994 8.27204 15.7279C6.60059 14.0565 5.27472 12.0722 4.37014 9.8883C3.72124 8.32174 3.29825 6.67449 3.11097 4.9959C2.98848 3.89814 3.8954 3 4.99997 3H9.13372C9.65477 3 10.1212 3.32322 10.3041 3.8111L11.2174 6.24636C11.3895 6.70533 11.2774 7.22254 10.9308 7.56915L9.47859 9.02138C10.087 10.1856 10.8709 11.2558 11.8076 12.1924C12.7442 13.129 13.8144 13.913 14.9786 14.5214Z" }) })); }; IconPhone.iconName = "phone"; export default IconPhone;