@mirohq/design-system-icons 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -0
- package/dist/main.js +591 -0
- package/dist/main.js.map +1 -0
- package/dist/module.js +557 -0
- package/dist/module.js.map +1 -0
- package/dist/types.d.ts +426 -0
- package/package.json +57 -0
- package/react/arrow-left.tsx +21 -0
- package/react/arrow-right.tsx +21 -0
- package/react/arrow-top-right.tsx +21 -0
- package/react/bar-three.tsx +21 -0
- package/react/check-mark.tsx +21 -0
- package/react/chevron-down.tsx +21 -0
- package/react/chevron-left.tsx +21 -0
- package/react/chevron-right.tsx +21 -0
- package/react/chevron-up.tsx +21 -0
- package/react/cross-circle.tsx +22 -0
- package/react/cross.tsx +21 -0
- package/react/envelope.tsx +30 -0
- package/react/exclamation-point-circle.tsx +22 -0
- package/react/globe.tsx +22 -0
- package/react/icon-placeholder.tsx +22 -0
- package/react/index.ts +27 -0
- package/react/information-mark-circle.tsx +22 -0
- package/react/lock-closed.tsx +32 -0
- package/react/lock-open.tsx +32 -0
- package/react/minus.tsx +21 -0
- package/react/plus.tsx +21 -0
- package/react/question-mark.tsx +22 -0
- package/react/search.tsx +22 -0
- package/react/social-facebook.tsx +19 -0
- package/react/social-instagram.tsx +25 -0
- package/react/social-linkedin.tsx +19 -0
- package/react/social-twitter.tsx +19 -0
- package/react/social-youtube.tsx +19 -0
- package/svg/24/arrow-left.svg +1 -0
- package/svg/24/arrow-right.svg +1 -0
- package/svg/24/arrow-top-right.svg +1 -0
- package/svg/24/bar-three.svg +1 -0
- package/svg/24/check-mark.svg +1 -0
- package/svg/24/chevron-down.svg +1 -0
- package/svg/24/chevron-left.svg +1 -0
- package/svg/24/chevron-right.svg +1 -0
- package/svg/24/chevron-up.svg +1 -0
- package/svg/24/cross-circle.svg +1 -0
- package/svg/24/cross.svg +1 -0
- package/svg/24/envelope.svg +1 -0
- package/svg/24/exclamation-point-circle.svg +1 -0
- package/svg/24/globe.svg +1 -0
- package/svg/24/icon-placeholder.svg +1 -0
- package/svg/24/information-mark-circle.svg +1 -0
- package/svg/24/lock-closed.svg +1 -0
- package/svg/24/lock-open.svg +1 -0
- package/svg/24/minus.svg +1 -0
- package/svg/24/plus.svg +1 -0
- package/svg/24/question-mark.svg +1 -0
- package/svg/24/search.svg +1 -0
- package/svg/24/social-facebook.svg +1 -0
- package/svg/24/social-instagram.svg +1 -0
- package/svg/24/social-linkedin.svg +1 -0
- package/svg/24/social-twitter.svg +1 -0
- package/svg/24/social-youtube.svg +1 -0
- package/svg/meta.json +150 -0
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Miro Design System Icons
|
|
2
|
+
|
|
3
|
+
## Adding a new Icon
|
|
4
|
+
|
|
5
|
+
The process of adding a new icon is the result of the collaboration of the design and development team.
|
|
6
|
+
For this to happen follow this procedure:
|
|
7
|
+
|
|
8
|
+
1. The designer should create a new Figma file including the new icon by following this guideline: [MDS - System Icons Library Figma file](https://www.figma.com/file/jSWCA1HFD22hk0isIY37ua/MDS---System-Icons-Library?node-id=1001%3A1063), which includes a template with all steps needed to easily create the new icon.
|
|
9
|
+
2. Once the file is ready, the designer should notify the Miro design system team so they can approve and include changes into the Figma root file containing all icons.
|
|
10
|
+
3. Finally, the development team takes over and runs the synchronization process, where the latest changes performed over the Figma root file are downloaded into the repository accordingly.
|
|
11
|
+
|
|
12
|
+
## Synchronizing icons
|
|
13
|
+
|
|
14
|
+
Figma is the chosen tool to collaborate between designers and the DS team when it comes to icons.
|
|
15
|
+
It also serves as a source of truth, therefore it is important to keep in sync the DS icons package with it, right now the process is manual, and it can be done by executing this command in the root repo:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
pnpm sync:icons
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
The execution of this command does the following:
|
|
22
|
+
|
|
23
|
+

|
|
24
|
+
|
|
25
|
+
- **figma-sync**: runs the `figma-sync` command to obtain all icons coming from the specified figma file and store them in svg format inside svg folder. You can go in-depth about the synchronization process [here](#figma-synchronization).
|
|
26
|
+
- **svg-to-react**: runs the `svg-to-react` command to take all svg files and create their ccorresponding react components.
|
|
27
|
+
- **changeset creation**: generates a changeset file detailing all the changes with the proper version (Major, Minor, or patch).
|
|
28
|
+
- **git add chages**: all changes resulting from the previous two steps are staged.
|
|
29
|
+
- **git commit changes**: changes are committed under a specific message.
|
|
30
|
+
|
|
31
|
+
### Figma synchronization
|
|
32
|
+
|
|
33
|
+
The execution of the `figma-sync` command does the following:
|
|
34
|
+
|
|
35
|
+
- Removes all the content inside svg folder.
|
|
36
|
+
- Icons content and metadata is obtained via Figma API.
|
|
37
|
+
- Once the content for all the icons is available, [SVGO](https://github.com/svg/svgo) is applied on top to perform some optimizations and replaces colors to currentColor prop.
|
|
38
|
+
- Icons are stored based on different folders based on size (svg/24, svg/16).
|
|
39
|
+
|
|
40
|
+
[For technical details, please check it here.](./docs/how-figma-sync-works.md)
|
|
41
|
+
|
|
42
|
+
### SVGR icon generation
|
|
43
|
+
|
|
44
|
+
To convert the svgs obtained and formatted by figma-sync into react components, the utility [SVGR](https://react-svgr.com/) takes care of it, and helps to automate the process. Overall the only thing that needs as an input is the path where the svg files are stored, and the file where the react auto-generated components should live.
|
|
45
|
+
|
|
46
|
+
The overall process can be started by using the following command `svg-to-react`, which does the following:
|
|
47
|
+
|
|
48
|
+
- Removes all icons from the react folder.
|
|
49
|
+
- Using the SVGR cli, it reads from the `svgrrc.js` file where some configurations are specified, such as the paths where templates to generate icons and the index file are, as well as the attributes to be kept inside icon react components.
|
|
50
|
+
- SVGR takes all svgs stored inside `svg/24` folder, and based on the icon template `templates/icon.js`. It creates the content for the icon react component and stores it inside react folder.
|
|
51
|
+
- The components generated extend all the DS capabilities including stitches and tokens. Moreover, it provides the component with the size attribute.
|
|
52
|
+
- Finally, SVGR creates an index file inside the react folder where all generated icons are exported.
|
package/dist/main.js
ADDED
|
@@ -0,0 +1,591 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var designSystemStitches = require('@mirohq/design-system-stitches');
|
|
7
|
+
var designSystemPrimitive = require('@mirohq/design-system-primitive');
|
|
8
|
+
var designSystemUtils = require('@mirohq/design-system-utils');
|
|
9
|
+
|
|
10
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
|
+
|
|
12
|
+
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
13
|
+
|
|
14
|
+
const StyledIcon = designSystemStitches.styled(designSystemPrimitive.Primitive.svg, {
|
|
15
|
+
display: "inline-flex",
|
|
16
|
+
verticalAlign: "text-bottom",
|
|
17
|
+
forcedColorAdjust: "preserve-parent-color",
|
|
18
|
+
variants: {
|
|
19
|
+
size: {
|
|
20
|
+
small: {
|
|
21
|
+
width: "$icon-200"
|
|
22
|
+
},
|
|
23
|
+
medium: {
|
|
24
|
+
width: "$icon-300"
|
|
25
|
+
},
|
|
26
|
+
large: {
|
|
27
|
+
width: "$icon-400"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
color: designSystemUtils.mapKeysToVariants(designSystemStitches.theme.colors, "color")
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
const IconArrowLeft = React.forwardRef(
|
|
35
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
36
|
+
StyledIcon,
|
|
37
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
38
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
39
|
+
d: "M0 0h23.59v24H0z"
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
42
|
+
stroke: "currentColor",
|
|
43
|
+
strokeLinecap: "round",
|
|
44
|
+
strokeWidth: 2,
|
|
45
|
+
d: "M20.59 12h-17M10 5l-7 7 7 7"
|
|
46
|
+
})
|
|
47
|
+
)
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
const IconArrowRight = React.forwardRef(
|
|
51
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
52
|
+
StyledIcon,
|
|
53
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
54
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
55
|
+
d: "M0 0h24v24H0z"
|
|
56
|
+
}),
|
|
57
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
58
|
+
stroke: "currentColor",
|
|
59
|
+
strokeLinecap: "round",
|
|
60
|
+
strokeWidth: 2,
|
|
61
|
+
d: "M20 12H3m10.59-7 7 7-7 7"
|
|
62
|
+
})
|
|
63
|
+
)
|
|
64
|
+
);
|
|
65
|
+
|
|
66
|
+
const IconArrowTopRight = React.forwardRef(
|
|
67
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
68
|
+
StyledIcon,
|
|
69
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
70
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
71
|
+
d: "M0 0h24v24H0z"
|
|
72
|
+
}),
|
|
73
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
74
|
+
stroke: "currentColor",
|
|
75
|
+
strokeLinecap: "round",
|
|
76
|
+
strokeWidth: 2,
|
|
77
|
+
d: "M10 5h9v9m0-9L5 19"
|
|
78
|
+
})
|
|
79
|
+
)
|
|
80
|
+
);
|
|
81
|
+
|
|
82
|
+
const IconBarThree = React.forwardRef(
|
|
83
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
84
|
+
StyledIcon,
|
|
85
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
86
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
87
|
+
d: "M0 0h24v24H0z"
|
|
88
|
+
}),
|
|
89
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
90
|
+
stroke: "currentColor",
|
|
91
|
+
strokeLinecap: "round",
|
|
92
|
+
strokeWidth: 2,
|
|
93
|
+
d: "M21 5H3m18 7H3m18 7H3"
|
|
94
|
+
})
|
|
95
|
+
)
|
|
96
|
+
);
|
|
97
|
+
|
|
98
|
+
const IconCheckMark = React.forwardRef(
|
|
99
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
100
|
+
StyledIcon,
|
|
101
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
102
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
103
|
+
d: "M0 0h24v24H0z"
|
|
104
|
+
}),
|
|
105
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
106
|
+
stroke: "currentColor",
|
|
107
|
+
strokeLinecap: "round",
|
|
108
|
+
strokeWidth: 2,
|
|
109
|
+
d: "m5 11 5 5 9-9"
|
|
110
|
+
})
|
|
111
|
+
)
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
const IconChevronDown = React.forwardRef(
|
|
115
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
116
|
+
StyledIcon,
|
|
117
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
118
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
119
|
+
d: "M0 0h24v24H0z"
|
|
120
|
+
}),
|
|
121
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
122
|
+
stroke: "currentColor",
|
|
123
|
+
strokeLinecap: "round",
|
|
124
|
+
strokeWidth: 2,
|
|
125
|
+
d: "m6 9.5 6 6 6-6"
|
|
126
|
+
})
|
|
127
|
+
)
|
|
128
|
+
);
|
|
129
|
+
|
|
130
|
+
const IconChevronLeft = React.forwardRef(
|
|
131
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
132
|
+
StyledIcon,
|
|
133
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
134
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
135
|
+
d: "M0 0h24v24H0z"
|
|
136
|
+
}),
|
|
137
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
138
|
+
stroke: "currentColor",
|
|
139
|
+
strokeLinecap: "round",
|
|
140
|
+
strokeWidth: 2,
|
|
141
|
+
d: "m14.5 6-6 6 6 6"
|
|
142
|
+
})
|
|
143
|
+
)
|
|
144
|
+
);
|
|
145
|
+
|
|
146
|
+
const IconChevronRight = React.forwardRef(
|
|
147
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
148
|
+
StyledIcon,
|
|
149
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
150
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
151
|
+
d: "M0 0h24v24H0z"
|
|
152
|
+
}),
|
|
153
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
154
|
+
stroke: "currentColor",
|
|
155
|
+
strokeLinecap: "round",
|
|
156
|
+
strokeWidth: 2,
|
|
157
|
+
d: "m9.5 6 6 6-6 6"
|
|
158
|
+
})
|
|
159
|
+
)
|
|
160
|
+
);
|
|
161
|
+
|
|
162
|
+
const IconChevronUp = React.forwardRef(
|
|
163
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
164
|
+
StyledIcon,
|
|
165
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
166
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
167
|
+
d: "M0 0h24v24H0z"
|
|
168
|
+
}),
|
|
169
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
170
|
+
stroke: "currentColor",
|
|
171
|
+
strokeLinecap: "round",
|
|
172
|
+
strokeWidth: 2,
|
|
173
|
+
d: "m6 14.5 6-6 6 6"
|
|
174
|
+
})
|
|
175
|
+
)
|
|
176
|
+
);
|
|
177
|
+
|
|
178
|
+
const IconCrossCircle = React.forwardRef(
|
|
179
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
180
|
+
StyledIcon,
|
|
181
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
182
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
183
|
+
d: "M0 0h24v24H0z"
|
|
184
|
+
}),
|
|
185
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
186
|
+
cx: 12,
|
|
187
|
+
cy: 12,
|
|
188
|
+
r: 9,
|
|
189
|
+
stroke: "currentColor",
|
|
190
|
+
strokeWidth: 2
|
|
191
|
+
}),
|
|
192
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
193
|
+
stroke: "currentColor",
|
|
194
|
+
strokeLinecap: "round",
|
|
195
|
+
strokeWidth: 2,
|
|
196
|
+
d: "m9 9 6 6m0-6-6 6"
|
|
197
|
+
})
|
|
198
|
+
)
|
|
199
|
+
);
|
|
200
|
+
|
|
201
|
+
const IconCross = React.forwardRef(
|
|
202
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
203
|
+
StyledIcon,
|
|
204
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
205
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
206
|
+
d: "M0 0h24v24H0z"
|
|
207
|
+
}),
|
|
208
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
209
|
+
stroke: "currentColor",
|
|
210
|
+
strokeLinecap: "round",
|
|
211
|
+
strokeWidth: 2,
|
|
212
|
+
d: "m6 6 12 12m0-12L6 18"
|
|
213
|
+
})
|
|
214
|
+
)
|
|
215
|
+
);
|
|
216
|
+
|
|
217
|
+
const IconEnvelope = React.forwardRef(
|
|
218
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
219
|
+
StyledIcon,
|
|
220
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
221
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
222
|
+
d: "M0 0h24v24H0z"
|
|
223
|
+
}),
|
|
224
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
225
|
+
width: 18,
|
|
226
|
+
height: 14,
|
|
227
|
+
x: 3,
|
|
228
|
+
y: 5,
|
|
229
|
+
stroke: "currentColor",
|
|
230
|
+
strokeWidth: 2,
|
|
231
|
+
rx: 2
|
|
232
|
+
}),
|
|
233
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
234
|
+
stroke: "currentColor",
|
|
235
|
+
strokeLinecap: "round",
|
|
236
|
+
strokeWidth: 2,
|
|
237
|
+
d: "m7 9 3.618 3.459a2 2 0 0 0 2.764 0L17 9"
|
|
238
|
+
})
|
|
239
|
+
)
|
|
240
|
+
);
|
|
241
|
+
|
|
242
|
+
const IconExclamationPointCircle = React.forwardRef(
|
|
243
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
244
|
+
StyledIcon,
|
|
245
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
246
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
247
|
+
d: "M0 0h24v24H0z"
|
|
248
|
+
}),
|
|
249
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
250
|
+
cx: 12,
|
|
251
|
+
cy: 12,
|
|
252
|
+
r: 9,
|
|
253
|
+
stroke: "currentColor",
|
|
254
|
+
strokeWidth: 2
|
|
255
|
+
}),
|
|
256
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
257
|
+
stroke: "currentColor",
|
|
258
|
+
strokeLinecap: "round",
|
|
259
|
+
strokeWidth: 2,
|
|
260
|
+
d: "M12 7v6m0 3.5v.5"
|
|
261
|
+
})
|
|
262
|
+
)
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
const IconGlobe = React.forwardRef(
|
|
266
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
267
|
+
StyledIcon,
|
|
268
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
269
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
270
|
+
d: "M0 0h24v24H0z"
|
|
271
|
+
}),
|
|
272
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
273
|
+
cx: 12,
|
|
274
|
+
cy: 12,
|
|
275
|
+
r: 9,
|
|
276
|
+
stroke: "currentColor",
|
|
277
|
+
strokeWidth: 2
|
|
278
|
+
}),
|
|
279
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
280
|
+
stroke: "currentColor",
|
|
281
|
+
strokeLinecap: "round",
|
|
282
|
+
strokeWidth: 2,
|
|
283
|
+
d: "M11.663 3C9.495 4.62 8 8.042 8 12s1.495 7.38 3.663 9m.674-18C14.505 4.62 16 8.042 16 12s-1.495 7.38-3.663 9M4 9h16M4 15h16"
|
|
284
|
+
})
|
|
285
|
+
)
|
|
286
|
+
);
|
|
287
|
+
|
|
288
|
+
const IconIconPlaceholder = React.forwardRef(
|
|
289
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
290
|
+
StyledIcon,
|
|
291
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
292
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
293
|
+
d: "M0 0h24v24H0z"
|
|
294
|
+
}),
|
|
295
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
296
|
+
cx: 12,
|
|
297
|
+
cy: 12,
|
|
298
|
+
r: 9,
|
|
299
|
+
stroke: "currentColor",
|
|
300
|
+
strokeWidth: 2
|
|
301
|
+
}),
|
|
302
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
303
|
+
stroke: "currentColor",
|
|
304
|
+
strokeLinecap: "round",
|
|
305
|
+
strokeWidth: 2,
|
|
306
|
+
d: "m3 3 18 18m0-18L3 21"
|
|
307
|
+
})
|
|
308
|
+
)
|
|
309
|
+
);
|
|
310
|
+
|
|
311
|
+
const IconInformationMarkCircle = React.forwardRef(
|
|
312
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
313
|
+
StyledIcon,
|
|
314
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
315
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
316
|
+
d: "M0 0h24v24H0z"
|
|
317
|
+
}),
|
|
318
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
319
|
+
cx: 12,
|
|
320
|
+
cy: 12,
|
|
321
|
+
r: 9,
|
|
322
|
+
stroke: "currentColor",
|
|
323
|
+
strokeWidth: 2
|
|
324
|
+
}),
|
|
325
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
326
|
+
stroke: "currentColor",
|
|
327
|
+
strokeLinecap: "round",
|
|
328
|
+
strokeWidth: 2,
|
|
329
|
+
d: "M12 6.5V7m0 4v6"
|
|
330
|
+
})
|
|
331
|
+
)
|
|
332
|
+
);
|
|
333
|
+
|
|
334
|
+
const IconLockClosed = React.forwardRef(
|
|
335
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
336
|
+
StyledIcon,
|
|
337
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
338
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
339
|
+
d: "M0 0h24v24H0z"
|
|
340
|
+
}),
|
|
341
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
342
|
+
cx: 12,
|
|
343
|
+
cy: 16,
|
|
344
|
+
r: 1,
|
|
345
|
+
fill: "currentColor"
|
|
346
|
+
}),
|
|
347
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
348
|
+
width: 14,
|
|
349
|
+
height: 10,
|
|
350
|
+
x: 5,
|
|
351
|
+
y: 11,
|
|
352
|
+
stroke: "currentColor",
|
|
353
|
+
strokeWidth: 2,
|
|
354
|
+
rx: 2
|
|
355
|
+
}),
|
|
356
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
357
|
+
stroke: "currentColor",
|
|
358
|
+
strokeLinecap: "round",
|
|
359
|
+
strokeWidth: 2,
|
|
360
|
+
d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v6"
|
|
361
|
+
}),
|
|
362
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
363
|
+
cx: 12,
|
|
364
|
+
cy: 16,
|
|
365
|
+
r: 1,
|
|
366
|
+
stroke: "currentColor",
|
|
367
|
+
strokeWidth: 2
|
|
368
|
+
})
|
|
369
|
+
)
|
|
370
|
+
);
|
|
371
|
+
|
|
372
|
+
const IconLockOpen = React.forwardRef(
|
|
373
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
374
|
+
StyledIcon,
|
|
375
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
376
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
377
|
+
d: "M0 0h24v24H0z"
|
|
378
|
+
}),
|
|
379
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
380
|
+
cx: 12,
|
|
381
|
+
cy: 16,
|
|
382
|
+
r: 1,
|
|
383
|
+
fill: "currentColor"
|
|
384
|
+
}),
|
|
385
|
+
/* @__PURE__ */ React__default["default"].createElement("rect", {
|
|
386
|
+
width: 14,
|
|
387
|
+
height: 10,
|
|
388
|
+
x: 5,
|
|
389
|
+
y: 11,
|
|
390
|
+
stroke: "currentColor",
|
|
391
|
+
strokeWidth: 2,
|
|
392
|
+
rx: 2
|
|
393
|
+
}),
|
|
394
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
395
|
+
stroke: "currentColor",
|
|
396
|
+
strokeLinecap: "round",
|
|
397
|
+
strokeWidth: 2,
|
|
398
|
+
d: "M16.5 11V5a2 2 0 0 0-2-2h-5a2 2 0 0 0-2 2v1.5"
|
|
399
|
+
}),
|
|
400
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
401
|
+
cx: 12,
|
|
402
|
+
cy: 16,
|
|
403
|
+
r: 1,
|
|
404
|
+
stroke: "currentColor",
|
|
405
|
+
strokeWidth: 2
|
|
406
|
+
})
|
|
407
|
+
)
|
|
408
|
+
);
|
|
409
|
+
|
|
410
|
+
const IconMinus = React.forwardRef(
|
|
411
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
412
|
+
StyledIcon,
|
|
413
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
414
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
415
|
+
d: "M0 0h24v24H0z"
|
|
416
|
+
}),
|
|
417
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
418
|
+
stroke: "currentColor",
|
|
419
|
+
strokeLinecap: "round",
|
|
420
|
+
strokeWidth: 2,
|
|
421
|
+
d: "M5 12h14"
|
|
422
|
+
})
|
|
423
|
+
)
|
|
424
|
+
);
|
|
425
|
+
|
|
426
|
+
const IconPlus = React.forwardRef(
|
|
427
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
428
|
+
StyledIcon,
|
|
429
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
430
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
431
|
+
d: "M0 0h24v24H0z"
|
|
432
|
+
}),
|
|
433
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
434
|
+
stroke: "currentColor",
|
|
435
|
+
strokeLinecap: "round",
|
|
436
|
+
strokeWidth: 2,
|
|
437
|
+
d: "M5 12h14m-7-7v14"
|
|
438
|
+
})
|
|
439
|
+
)
|
|
440
|
+
);
|
|
441
|
+
|
|
442
|
+
const IconQuestionMark = React.forwardRef(
|
|
443
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
444
|
+
StyledIcon,
|
|
445
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
446
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
447
|
+
d: "M0 0h24v24H0z"
|
|
448
|
+
}),
|
|
449
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
450
|
+
cx: 12,
|
|
451
|
+
cy: 12,
|
|
452
|
+
r: 9,
|
|
453
|
+
stroke: "currentColor",
|
|
454
|
+
strokeWidth: 2
|
|
455
|
+
}),
|
|
456
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
457
|
+
stroke: "currentColor",
|
|
458
|
+
strokeLinecap: "round",
|
|
459
|
+
strokeWidth: 2,
|
|
460
|
+
d: "M9.17 9a3.001 3.001 0 1 1 3.812 3.836c-.522.18-.982.612-.982 1.164v.25m0 2.65v.1"
|
|
461
|
+
})
|
|
462
|
+
)
|
|
463
|
+
);
|
|
464
|
+
|
|
465
|
+
const IconSearch = React.forwardRef(
|
|
466
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
467
|
+
StyledIcon,
|
|
468
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
469
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
470
|
+
d: "M0 0h24v24H0z"
|
|
471
|
+
}),
|
|
472
|
+
/* @__PURE__ */ React__default["default"].createElement("circle", {
|
|
473
|
+
cx: 10,
|
|
474
|
+
cy: 10,
|
|
475
|
+
r: 6,
|
|
476
|
+
stroke: "currentColor",
|
|
477
|
+
strokeWidth: 2
|
|
478
|
+
}),
|
|
479
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
480
|
+
stroke: "currentColor",
|
|
481
|
+
strokeLinecap: "round",
|
|
482
|
+
strokeWidth: 2,
|
|
483
|
+
d: "m20 20-5.5-5.5"
|
|
484
|
+
})
|
|
485
|
+
)
|
|
486
|
+
);
|
|
487
|
+
|
|
488
|
+
const IconSocialFacebook = React.forwardRef(
|
|
489
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
490
|
+
StyledIcon,
|
|
491
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
492
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
493
|
+
d: "M0 0h24v24H0z"
|
|
494
|
+
}),
|
|
495
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
496
|
+
fill: "currentColor",
|
|
497
|
+
d: "M22 12.061C22 6.505 17.523 2 12 2S2 6.505 2 12.061c0 5.022 3.657 9.184 8.438 9.939v-7.03h-2.54v-2.91h2.54V9.845c0-2.522 1.492-3.915 3.777-3.915 1.094 0 2.238.197 2.238.197v2.476h-1.26c-1.243 0-1.63.775-1.63 1.57v1.888h2.773l-.443 2.908h-2.33V22c4.78-.755 8.437-4.917 8.437-9.939Z"
|
|
498
|
+
})
|
|
499
|
+
)
|
|
500
|
+
);
|
|
501
|
+
|
|
502
|
+
const IconSocialInstagram = React.forwardRef(
|
|
503
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
504
|
+
StyledIcon,
|
|
505
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
506
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
507
|
+
d: "M0 0h24v24H0z"
|
|
508
|
+
}),
|
|
509
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
510
|
+
fill: "currentColor",
|
|
511
|
+
d: "M8.667 12a3.333 3.333 0 1 0 6.666 0 3.333 3.333 0 0 0-6.666 0Z"
|
|
512
|
+
}),
|
|
513
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
514
|
+
fill: "currentColor",
|
|
515
|
+
fillRule: "evenodd",
|
|
516
|
+
d: "M12 2c-2.716 0-3.056.012-4.123.06-1.064.049-1.791.218-2.427.465a4.902 4.902 0 0 0-1.772 1.153A4.902 4.902 0 0 0 2.525 5.45c-.247.636-.416 1.363-.465 2.427C2.011 8.944 2 9.284 2 12s.011 3.056.06 4.123c.049 1.064.218 1.791.465 2.427a4.902 4.902 0 0 0 1.153 1.772 4.901 4.901 0 0 0 1.772 1.153c.636.247 1.363.416 2.427.465 1.067.048 1.407.06 4.123.06s3.056-.012 4.123-.06c1.064-.049 1.791-.218 2.427-.465a4.902 4.902 0 0 0 1.772-1.153 4.902 4.902 0 0 0 1.153-1.772c.247-.636.416-1.363.465-2.427.048-1.067.06-1.407.06-4.123s-.012-3.056-.06-4.123c-.049-1.064-.218-1.791-.465-2.427a4.901 4.901 0 0 0-1.153-1.772 4.902 4.902 0 0 0-1.772-1.153c-.636-.247-1.363-.416-2.427-.465C15.056 2.012 14.716 2 12 2Zm6.538 4.662a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM6.865 12a5.135 5.135 0 1 1 10.27 0 5.135 5.135 0 0 1-10.27 0Z",
|
|
517
|
+
clipRule: "evenodd"
|
|
518
|
+
})
|
|
519
|
+
)
|
|
520
|
+
);
|
|
521
|
+
|
|
522
|
+
const IconSocialLinkedin = React.forwardRef(
|
|
523
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
524
|
+
StyledIcon,
|
|
525
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
526
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
527
|
+
d: "M0 0h24v24H0z"
|
|
528
|
+
}),
|
|
529
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
530
|
+
fill: "currentColor",
|
|
531
|
+
d: "M20.52 2c.816 0 1.48.646 1.48 1.442v17.115c0 .796-.664 1.443-1.48 1.443H3.475C2.661 22 2 21.353 2 20.557V3.442C2 2.646 2.661 2 3.475 2h17.046Zm-1.477 17.042v-5.234c0-2.57-.555-4.547-3.558-4.547-1.444 0-2.412.791-2.807 1.542h-.04V9.498H9.793v9.544h2.963v-4.72c0-1.246.235-2.452 1.779-2.452 1.522 0 1.541 1.424 1.541 2.53v4.642h2.966ZM7.933 9.498h-2.97v9.544h2.97V9.498ZM6.449 4.753a1.72 1.72 0 1 0-.003 3.44 1.72 1.72 0 0 0 .003-3.44Z"
|
|
532
|
+
})
|
|
533
|
+
)
|
|
534
|
+
);
|
|
535
|
+
|
|
536
|
+
const IconSocialTwitter = React.forwardRef(
|
|
537
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
538
|
+
StyledIcon,
|
|
539
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
540
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
541
|
+
d: "M0 0h24v24H0z"
|
|
542
|
+
}),
|
|
543
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
544
|
+
fill: "currentColor",
|
|
545
|
+
d: "M7.919 21C16.22 21 20.76 14.074 20.76 8.068c0-.196 0-.392-.013-.587A9.22 9.22 0 0 0 23 5.128a8.963 8.963 0 0 1-2.593.715 4.556 4.556 0 0 0 1.985-2.514 9.01 9.01 0 0 1-2.866 1.104A4.505 4.505 0 0 0 16.235 3c-2.479 0-4.518 2.054-4.518 4.55 0 .345.039.69.117 1.028A12.791 12.791 0 0 1 2.53 3.829c-1.19 2.065-.574 4.741 1.4 6.067a4.456 4.456 0 0 1-2.049-.569v.058c0 2.155 1.523 4.029 3.621 4.455a4.477 4.477 0 0 1-2.038.078 4.532 4.532 0 0 0 4.217 3.157A9.019 9.019 0 0 1 1 18.958a12.716 12.716 0 0 0 6.919 2.039"
|
|
546
|
+
})
|
|
547
|
+
)
|
|
548
|
+
);
|
|
549
|
+
|
|
550
|
+
const IconSocialYoutube = React.forwardRef(
|
|
551
|
+
({ size = "medium", ...props }, forwardRef2) => React.createElement(
|
|
552
|
+
StyledIcon,
|
|
553
|
+
{ ...props, size, viewBox: "0 0 24 24", fill: "none", ref: forwardRef2 },
|
|
554
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
555
|
+
d: "M0 0h24v24H0z"
|
|
556
|
+
}),
|
|
557
|
+
/* @__PURE__ */ React__default["default"].createElement("path", {
|
|
558
|
+
fill: "currentColor",
|
|
559
|
+
d: "M23.02 6.155c-.265-1.045-1.044-1.868-2.034-2.147C19.192 3.5 12 3.5 12 3.5s-7.192 0-8.986.508C2.024 4.287 1.245 5.11.98 6.155.5 8.049.5 12 .5 12s0 3.952.48 5.845c.265 1.045 1.044 1.868 2.034 2.148C4.808 20.5 12 20.5 12 20.5s7.192 0 8.986-.507c.99-.28 1.77-1.103 2.034-2.148.48-1.893.48-5.845.48-5.845s0-3.951-.48-5.845ZM9.7 15.643V8.357L15.675 12 9.7 15.643Z"
|
|
560
|
+
})
|
|
561
|
+
)
|
|
562
|
+
);
|
|
563
|
+
|
|
564
|
+
exports.IconArrowLeft = IconArrowLeft;
|
|
565
|
+
exports.IconArrowRight = IconArrowRight;
|
|
566
|
+
exports.IconArrowTopRight = IconArrowTopRight;
|
|
567
|
+
exports.IconBarThree = IconBarThree;
|
|
568
|
+
exports.IconCheckMark = IconCheckMark;
|
|
569
|
+
exports.IconChevronDown = IconChevronDown;
|
|
570
|
+
exports.IconChevronLeft = IconChevronLeft;
|
|
571
|
+
exports.IconChevronRight = IconChevronRight;
|
|
572
|
+
exports.IconChevronUp = IconChevronUp;
|
|
573
|
+
exports.IconCross = IconCross;
|
|
574
|
+
exports.IconCrossCircle = IconCrossCircle;
|
|
575
|
+
exports.IconEnvelope = IconEnvelope;
|
|
576
|
+
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
577
|
+
exports.IconGlobe = IconGlobe;
|
|
578
|
+
exports.IconIconPlaceholder = IconIconPlaceholder;
|
|
579
|
+
exports.IconInformationMarkCircle = IconInformationMarkCircle;
|
|
580
|
+
exports.IconLockClosed = IconLockClosed;
|
|
581
|
+
exports.IconLockOpen = IconLockOpen;
|
|
582
|
+
exports.IconMinus = IconMinus;
|
|
583
|
+
exports.IconPlus = IconPlus;
|
|
584
|
+
exports.IconQuestionMark = IconQuestionMark;
|
|
585
|
+
exports.IconSearch = IconSearch;
|
|
586
|
+
exports.IconSocialFacebook = IconSocialFacebook;
|
|
587
|
+
exports.IconSocialInstagram = IconSocialInstagram;
|
|
588
|
+
exports.IconSocialLinkedin = IconSocialLinkedin;
|
|
589
|
+
exports.IconSocialTwitter = IconSocialTwitter;
|
|
590
|
+
exports.IconSocialYoutube = IconSocialYoutube;
|
|
591
|
+
//# sourceMappingURL=main.js.map
|