@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.72 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconEar = (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: "M11.8626 3.5C8.14552 3.5 5.44589 7.0345 6.42393 10.6206L6.47357 10.8027C6.58256 11.2023 6.34696 11.6146 5.94734 11.7236C5.54772 11.8326 5.13541 11.597 5.02643 11.1973L4.97678 11.0153C3.73851 6.47496 7.15647 2 11.8626 2C15.8045 2 19 5.1955 19 9.13735V9.56755C19 11.6455 18.1455 13.6321 16.637 15.0612L14.8847 16.7213C14.4241 17.1576 14.1012 17.7193 13.9559 18.3369L13.9134 18.5178C13.4333 20.5581 11.6127 22 9.51671 22C7.0222 22 5 19.9778 5 17.4833V17C5 16.5858 5.33579 16.25 5.75 16.25C6.16421 16.25 6.5 16.5858 6.5 17V17.4833C6.5 19.1494 7.85063 20.5 9.51671 20.5C10.9166 20.5 12.1326 19.5369 12.4532 18.1742L12.4958 17.9933C12.7082 17.0908 13.18 16.27 13.8531 15.6323L15.6054 13.9723C16.8149 12.8265 17.5 11.2337 17.5 9.56755V9.13735C17.5 6.02393 14.9761 3.5 11.8626 3.5Z" }), _jsx("path", { d: "M9.96703 11.6394C7.21771 9.73599 8.677 5.5 11.9391 5.5C13.8894 5.5 15.5 7.07988 15.5 9.04279V9.5C15.5 9.91421 15.1642 10.25 14.75 10.25C14.3358 10.25 14 9.91421 14 9.5V9.04279C14 7.92087 13.0736 7 11.9391 7C10.0656 7 9.34771 9.38622 10.8208 10.4061C13.2953 12.1192 12.0831 16 9.07344 16H8.5C8.08579 16 7.75 15.6642 7.75 15.25C7.75 14.8358 8.08579 14.5 8.5 14.5H9.07344C10.6125 14.5 11.2324 12.5154 9.96703 11.6394Z" })] }));
};
IconEar.iconName = "ear";
export default IconEar;