@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.69 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 StyledChartColumnSolid = ({
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.5 1.5C2.32828 1.5 3 2.17172 3 3V18.75C3 19.1625 3.33562 19.5 3.75 19.5H22.5C23.3297 19.5 24 20.1703 24 21C24 21.8297 23.3297 22.5 22.5 22.5H3.75C1.67906 22.5 0 20.8219 0 18.75V3C0 2.17172 0.671719 1.5 1.5 1.5ZM7.5 10.5C8.32969 10.5 9 11.1703 9 12V15C9 15.8297 8.32969 16.5 7.5 16.5C6.67031 16.5 6 15.8297 6 15V12C6 11.1703 6.67031 10.5 7.5 10.5ZM13.5 15C13.5 15.8297 12.8297 16.5 12 16.5C11.1703 16.5 10.5 15.8297 10.5 15V7.5C10.5 6.67031 11.1703 6 12 6C12.8297 6 13.5 6.67031 13.5 7.5V15ZM16.5 9C17.3297 9 18 9.67031 18 10.5V15C18 15.8297 17.3297 16.5 16.5 16.5C15.6703 16.5 15 15.8297 15 15V10.5C15 9.67031 15.6703 9 16.5 9ZM22.5 15C22.5 15.8297 21.8297 16.5 21 16.5C20.1703 16.5 19.5 15.8297 19.5 15V4.5C19.5 3.67172 20.1703 3 21 3C21.8297 3 22.5 3.67172 22.5 4.5V15Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledChartColumnSolid);
const ChartColumnSolid = /*#__PURE__*/memo(ForwardRef);
export default ChartColumnSolid;