@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledCollapseRegular = ({
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: "M14.195 10.412c.14.056.286.086.431.086h6.708c.661 0 1.167-.503 1.167-1.124 0-.622-.504-1.125-1.125-1.125h-4.034L23.67 1.92A1.125 1.125 0 1 0 22.08.33l-6.33 6.327V2.624c0-.624-.506-1.125-1.125-1.125-.618 0-1.125.506-1.125 1.167v6.708a1.125 1.125 0 0 0 .694 1.038Zm-4.821 3.089c.146 0 .292.028.43.09a1.124 1.124 0 0 1 .694 1.035v6.75c0 .619-.503 1.125-1.124 1.125a1.127 1.127 0 0 1-1.125-1.125V17.34L1.92 23.67a1.124 1.124 0 1 1-1.59-1.59l6.328-6.329H2.624a1.122 1.122 0 0 1-1.125-1.125c0-.623.506-1.125 1.167-1.125h6.708Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCollapseRegular);
const CollapseRegular = /*#__PURE__*/memo(ForwardRef);
export default CollapseRegular;