UNPKG

1.31 kBJavaScriptView Raw
1import * as React from "react";
2function BanknotesIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 viewBox: "0 0 24 24",
10 fill: "currentColor",
11 "aria-hidden": "true",
12 ref: svgRef,
13 "aria-labelledby": titleId
14 }, props), title ? /*#__PURE__*/React.createElement("title", {
15 id: titleId
16 }, title) : null, /*#__PURE__*/React.createElement("path", {
17 d: "M12 7.5a2.25 2.25 0 100 4.5 2.25 2.25 0 000-4.5z"
18 }), /*#__PURE__*/React.createElement("path", {
19 fillRule: "evenodd",
20 d: "M1.5 4.875C1.5 3.839 2.34 3 3.375 3h17.25c1.035 0 1.875.84 1.875 1.875v9.75c0 1.036-.84 1.875-1.875 1.875H3.375A1.875 1.875 0 011.5 14.625v-9.75zM8.25 9.75a3.75 3.75 0 117.5 0 3.75 3.75 0 01-7.5 0zM18.75 9a.75.75 0 00-.75.75v.008c0 .414.336.75.75.75h.008a.75.75 0 00.75-.75V9.75a.75.75 0 00-.75-.75h-.008zM4.5 9.75A.75.75 0 015.25 9h.008a.75.75 0 01.75.75v.008a.75.75 0 01-.75.75H5.25a.75.75 0 01-.75-.75V9.75z",
21 clipRule: "evenodd"
22 }), /*#__PURE__*/React.createElement("path", {
23 d: "M2.25 18a.75.75 0 000 1.5c5.4 0 10.63.722 15.6 2.075 1.19.324 2.4-.558 2.4-1.82V18.75a.75.75 0 00-.75-.75H2.25z"
24 }));
25}
26const ForwardRef = React.forwardRef(BanknotesIcon);
27export default ForwardRef;
\No newline at end of file