@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.38 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 StyledExpandRegular = ({
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: "M23.306.087A1.15 1.15 0 0 0 22.875 0h-6.708C15.507 0 15 .504 15 1.125s.504 1.125 1.125 1.125h4.034l-6.328 6.328a1.125 1.125 0 1 0 1.59 1.591l6.329-6.328v4.034c0 .623.506 1.125 1.125 1.125S24 8.494 24 7.833V1.125a1.136 1.136 0 0 0-.694-1.038ZM.696 23.91c.137.06.283.089.429.089h6.708C8.493 24 9 23.498 9 22.875s-.502-1.125-1.125-1.125H3.841l6.328-6.328a1.125 1.125 0 1 0-1.59-1.591L2.25 20.16v-4.036c0-.619-.504-1.125-1.125-1.125S0 15.506 0 16.125v6.75a1.124 1.124 0 0 0 .695 1.036Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledExpandRegular);
const ExpandRegular = /*#__PURE__*/memo(ForwardRef);
export default ExpandRegular;