@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.82 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledPhoneRotarySolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M17.3625 9.00937C16.7859 8.07187 15.8391 7.5 14.7609 7.5H9.23906C8.16094 7.5 7.17094 8.07422 6.6375 9.01172L1.69688 17.6555C1.57031 17.8828 1.5 18.1359 1.5 18.3984V21C1.5 21.8259 2.17406 22.5 3 22.5H21C21.8259 22.5 22.5 21.8259 22.5 21V18.3984C22.5 18.1348 22.4297 17.8828 22.3008 17.6541L17.3625 9.00937ZM12 18C10.1367 18 8.625 16.4883 8.625 14.625C8.625 12.7617 10.1391 11.25 12 11.25C13.8609 11.25 15.375 12.7617 15.375 14.625C15.375 16.4883 13.8656 18 12 18ZM23.7234 5.76562C20.475 3.04688 16.2844 1.5 12 1.5C7.71562 1.5 3.52734 3.04688 0.275391 5.76562C0.0996094 5.91094 0 6.13125 0 6.35625V9C0 9.41602 0.333984 9.75 0.75 9.75H4.03734C4.31859 9.75 4.5825 9.5918 4.70531 9.33398L6 6C7.86938 5.19141 9.90234 4.875 12 4.875C14.0977 4.875 16.1297 5.19375 18 6L19.2947 9.33375C19.4156 9.59062 19.6828 9.75 19.9641 9.75H23.25C23.6672 9.75 24 9.41719 24 9V6.35625C24 6.13125 23.9016 5.91094 23.7234 5.76562Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPhoneRotarySolid);
const PhoneRotarySolid = /*#__PURE__*/memo(ForwardRef);
export default PhoneRotarySolid;