UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.05 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", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", d: "M16.04 15.582a1.5 1.5 0 0 1-1.756.269 14.5 14.5 0 0 1-6.135-6.135 1.5 1.5 0 0 1 .269-1.755l1.338-1.339L8.96 4.5H5a.45.45 0 0 0-.326.129.23.23 0 0 0-.072.2A16.5 16.5 0 0 0 19.17 19.4a.23.23 0 0 0 .201-.073A.45.45 0 0 0 19.5 19v-3.96l-2.122-.796zm-1.061-1.06 1.452-1.453a1.25 1.25 0 0 1 1.323-.286l2.435.913c.488.183.81.65.81 1.17V19c0 1.105-.897 2.012-1.995 1.889A18 18 0 0 1 3.111 4.996C2.988 3.898 3.895 3 5 3h4.134c.52 0 .987.323 1.17.811l.913 2.435c.172.46.06.977-.286 1.323L9.479 9.021a13 13 0 0 0 5.5 5.5", clipRule: "evenodd" }) })); }; IconPhone.iconName = "phone"; export default IconPhone;