UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.86 kB
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 StyledFolderGearSolid = ({ 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: "M12 11.625C10.9641 11.625 10.125 12.4641 10.125 13.5C10.125 14.5359 10.9645 15.375 12 15.375C13.0355 15.375 13.875 14.5359 13.875 13.5C13.875 12.4641 13.0359 11.625 12 11.625ZM21.75 4.5H12.75L9.75 1.5H2.25C1.00781 1.5 0 2.50781 0 3.75V20.25C0 21.4922 1.00781 22.5 2.25 22.5H21.75C22.9922 22.5 24 21.4922 24 20.25V6.75C24 5.50781 22.9922 4.5 21.75 4.5ZM17.1984 16.5C16.9895 16.8618 16.74 17.182 16.4691 17.4778C16.3516 17.6062 16.1581 17.6316 16.0075 17.5445L14.9078 16.9098C14.4937 17.2641 14.0203 17.5406 13.5 17.7234V18.99C13.5 19.164 13.3814 19.3189 13.2115 19.3562C12.8203 19.4438 12.4172 19.5 12 19.5C11.5822 19.5 11.1802 19.444 10.7887 19.3572C10.6172 19.3219 10.5 19.1672 10.5 18.9891V17.7225C9.97875 17.537 9.50672 17.26 9.09422 16.9078L7.99688 17.5453C7.84617 17.6325 7.65281 17.607 7.53525 17.4787C7.26094 17.1844 7.0125 16.8609 6.80156 16.5C6.59273 16.1382 6.4402 15.7617 6.31922 15.3792C6.26719 15.2156 6.34219 15.0328 6.49688 14.9484L7.58484 14.3203C7.53281 14.0531 7.5 13.7391 7.5 13.5C7.5 13.2609 7.53342 12.9478 7.5825 12.6816L6.49688 12.0516C6.34219 11.9672 6.26719 11.7844 6.32344 11.6203C6.44062 11.2359 6.59531 10.8609 6.80156 10.5C7.01048 10.1382 7.26014 9.81797 7.53094 9.52219C7.65 9.39375 7.84219 9.37031 7.99688 9.45469L9.09609 10.0894C9.50625 9.73594 9.97969 9.45937 10.5 9.27656V8.01094C10.5 7.83698 10.6186 7.68206 10.7886 7.64456C11.1797 7.55625 11.5828 7.5 12 7.5C12.4178 7.5 12.8198 7.55602 13.2117 7.64264C13.3828 7.67812 13.5 7.83281 13.5 8.01094V9.2775C14.0212 9.46298 14.4933 9.74002 14.9058 10.0922L16.0055 9.4575C16.1561 9.37036 16.3495 9.39581 16.467 9.52416C16.7391 9.81563 16.9875 10.1391 17.1984 10.5C17.4094 10.8609 17.5599 11.2383 17.6808 11.6208C17.7332 11.7867 17.6584 11.9669 17.5079 12.0536L16.4199 12.6818C16.4672 12.9469 16.5 13.2188 16.5 13.5C16.5 13.7812 16.4666 14.0522 16.4175 14.3184L17.5055 14.9466C17.6561 15.0334 17.7309 15.2135 17.6785 15.3794C17.5594 15.7641 17.4047 16.1391 17.1984 16.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderGearSolid); const FolderGearSolid = /*#__PURE__*/memo(ForwardRef); export default FolderGearSolid;