@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 StyledMessage = ({
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.60952e-06 8.32601C-0.000630998 7.36315 0.185223 6.40961 0.546922 5.52001C0.90862 4.63041 1.43906 3.82222 2.10786 3.14171C2.77666 2.46121 3.57069 1.92176 4.44448 1.55425C5.31827 1.18674 6.25465 0.998403 7.2 1.00001H16.8C20.7756 1.00001 24 4.2939 24 8.32601V23H7.2C3.2244 23 1.60952e-06 19.7061 1.60952e-06 15.674V8.32601ZM21.6 20.5556V8.32601C21.5968 7.03106 21.0899 5.79019 20.1902 4.87521C19.2905 3.96023 18.0714 3.44574 16.8 3.44445H7.2C6.56982 3.44284 5.94552 3.56796 5.36292 3.81262C4.78031 4.05728 4.25086 4.41667 3.80491 4.87019C3.35897 5.32371 3.00532 5.86243 2.76423 6.45546C2.52314 7.04849 2.39937 7.68415 2.4 8.32601V15.674C2.40318 16.9689 2.91014 18.2098 3.80983 19.1248C4.70952 20.0398 5.9286 20.5543 7.2 20.5556H21.6ZM14.4 10.7778H16.8V13.2222H14.4V10.7778ZM7.2 10.7778H9.6V13.2222H7.2V10.7778Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMessage);
const Message = /*#__PURE__*/memo(ForwardRef);
export default Message;