@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.2 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 StyledExpandSolid = ({
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: "M8.316 13.566 3 18.88V16.5a1.499 1.499 0 1 0-3 0v6A1.5 1.5 0 0 0 1.5 24h6a1.499 1.499 0 1 0 0-3H5.123l5.316-5.316a1.5 1.5 0 1 0-2.123-2.118ZM23.883.927A1.498 1.498 0 0 0 22.5 0h-6a1.499 1.499 0 1 0 0 3h2.379l-5.316 5.316a1.5 1.5 0 1 0 2.121 2.12L21 5.124V7.5a1.499 1.499 0 1 0 3 0v-6c0-.195-.038-.39-.117-.573Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledExpandSolid);
const ExpandSolid = /*#__PURE__*/memo(ForwardRef);
export default ExpandSolid;