UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.84 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 StyledChartColumnRegular = ({ 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: "M1.125 1.5C1.74609 1.5 2.25 2.00391 2.25 2.625V19.125C2.25 19.7484 2.75391 20.25 3.375 20.25H22.875C23.4984 20.25 24 20.7516 24 21.375C24 21.9984 23.4984 22.5 22.875 22.5H3.375C1.51125 22.5 0 20.9906 0 19.125V2.625C0 2.00391 0.503906 1.5 1.125 1.5ZM7.875 10.5C8.49844 10.5 9 11.0016 9 11.625V15.375C9 15.9984 8.49844 16.5 7.875 16.5C7.25156 16.5 6.75 15.9984 6.75 15.375V11.625C6.75 11.0016 7.25156 10.5 7.875 10.5ZM13.5 15.375C13.5 15.9984 12.9984 16.5 12.375 16.5C11.7516 16.5 11.25 15.9984 11.25 15.375V7.125C11.25 6.50156 11.7516 6 12.375 6C12.9984 6 13.5 6.50156 13.5 7.125V15.375ZM16.875 9C17.4984 9 18 9.50156 18 10.125V15.375C18 15.9984 17.4984 16.5 16.875 16.5C16.2516 16.5 15.75 15.9984 15.75 15.375V10.125C15.75 9.50156 16.2516 9 16.875 9ZM22.5 15.375C22.5 15.9984 21.9984 16.5 21.375 16.5C20.7516 16.5 20.25 15.9984 20.25 15.375V4.125C20.25 3.50391 20.7516 3 21.375 3C21.9984 3 22.5 3.50391 22.5 4.125V15.375Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledChartColumnRegular); const ChartColumnRegular = /*#__PURE__*/memo(ForwardRef); export default ChartColumnRegular;