optimall-icons
Version:
Biblioteca de ícones do Optimall
27 lines • 1.28 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const AttachmentIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "attachment",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12.4 21.8c-4.63 0-8.4-3.77-8.4-8.4V7.9C4 4.65 6.65 2 9.9 2c3.25 0 5.9 2.65 5.9 5.9v5.5c0 1.88-1.52 3.4-3.4 3.4S9 15.27 9 13.4v-4c0-.5.4-.9.9-.9s.9.4.9.9v4c0 .88.72 1.6 1.6 1.6.88 0 1.6-.72 1.6-1.6V7.9c0-2.26-1.84-4.1-4.1-4.1S5.8 5.64 5.8 7.9v5.5c0 3.64 2.96 6.6 6.6 6.6 3.64 0 6.6-2.96 6.6-6.6v-1.5c0-.5.4-.9.9-.9s.9.4.9.9v1.5c0 4.63-3.77 8.4-8.4 8.4Z"
}));
});
export default AttachmentIcon;