@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.26 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 StyledLinkRegular = ({
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: "M6.48749 6.98207C8.59499 4.87344 12.0112 4.87344 14.1187 6.98207C16.125 8.98832 16.2337 12.2096 14.3625 14.3471L14.1637 14.5758C13.8337 14.9508 13.2675 14.9883 12.8925 14.6621C12.5175 14.3358 12.48 13.7658 12.8062 13.3908L13.0087 13.1621C14.2537 11.7371 14.1825 9.59207 12.8437 8.25332C11.4412 6.81707 9.16499 6.81707 7.72874 8.25332L3.51112 12.5021C2.10712 13.9083 2.10712 16.1846 3.51112 17.5871C4.84875 18.8921 6.99749 18.9971 8.41874 17.7521L8.65124 17.5496C9.02249 17.2233 9.59249 17.2608 9.91874 17.6358C10.2487 18.0071 10.2075 18.5771 9.83624 18.9033L9.60374 19.1058C7.46624 20.9733 4.245 20.8683 2.23837 18.8583C0.131439 16.7546 0.131439 13.3046 2.23837 11.2308L6.48749 6.98207ZM17.5125 16.3196C15.405 18.4271 11.9887 18.4271 9.88124 16.3196C7.84124 14.2796 7.76624 11.0921 9.63374 8.95457L9.80999 8.75207C10.1362 8.37707 10.7062 8.33957 11.0812 8.66582C11.4562 8.99207 11.4937 9.56207 11.1675 9.93707L10.9912 10.1396C9.74249 11.5646 9.81749 13.7096 11.1525 15.0483C12.5587 16.4508 14.835 16.4508 16.2412 15.0483L20.49 10.7996C21.8925 9.39332 21.8925 7.11707 20.49 5.71457C19.1512 4.37657 17.0025 4.30494 15.5812 5.55144L15.3487 5.75207C14.9775 6.07832 14.4075 6.04082 14.0812 5.66732C13.7512 5.29344 13.7925 4.72457 14.1637 4.39757L14.3962 4.19657C16.5337 2.32637 19.755 2.43369 21.7612 4.44182C23.8687 6.54707 23.8687 9.96332 21.7612 12.0708L17.5125 16.3196Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLinkRegular);
const LinkRegular = /*#__PURE__*/memo(ForwardRef);
export default LinkRegular;