@linzjs/lui 10.2.2 → 10.3.2

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.
Files changed (97) hide show
  1. package/CHANGELOG.md +289 -767
  2. package/README.md +16 -11
  3. package/dist/assets/icons/account_circle.svg +1 -0
  4. package/dist/assets/icons/add_circle.svg +1 -0
  5. package/dist/assets/icons/add_circle_outline.svg +1 -0
  6. package/dist/assets/icons/arrow_back.svg +1 -0
  7. package/dist/assets/icons/arrow_back_ios.svg +1 -0
  8. package/dist/assets/icons/arrow_drop_down.svg +1 -0
  9. package/dist/assets/icons/arrow_drop_up.svg +1 -0
  10. package/dist/assets/icons/arrow_forward_ios.svg +1 -0
  11. package/dist/assets/icons/attachment.svg +1 -0
  12. package/dist/assets/icons/border_color.svg +1 -0
  13. package/dist/assets/icons/check.svg +1 -0
  14. package/dist/assets/icons/check_circle.svg +1 -0
  15. package/dist/assets/icons/check_circle_outline.svg +1 -0
  16. package/dist/assets/icons/clear.svg +1 -0
  17. package/dist/assets/icons/corporate_fare.svg +1 -0
  18. package/dist/assets/icons/create.svg +1 -0
  19. package/dist/assets/icons/error.svg +1 -0
  20. package/dist/assets/icons/error_outline.svg +1 -0
  21. package/dist/assets/icons/expand_less.svg +1 -0
  22. package/dist/assets/icons/expand_more.svg +1 -0
  23. package/dist/assets/icons/filter_list.svg +1 -0
  24. package/dist/assets/icons/flag.svg +1 -0
  25. package/dist/assets/icons/forward.svg +1 -0
  26. package/dist/assets/icons/insert_invitation.svg +1 -0
  27. package/dist/assets/icons/insert_photo.svg +1 -0
  28. package/dist/assets/icons/keyboard_arrow_down.svg +1 -0
  29. package/dist/assets/icons/keyboard_arrow_left.svg +1 -0
  30. package/dist/assets/icons/keyboard_arrow_right.svg +1 -0
  31. package/dist/assets/icons/keyboard_arrow_up.svg +1 -0
  32. package/dist/assets/icons/navigate_before.svg +1 -0
  33. package/dist/assets/icons/navigate_next.svg +1 -0
  34. package/dist/assets/icons/people_outline.svg +1 -0
  35. package/dist/assets/icons/person.svg +1 -0
  36. package/dist/assets/icons/person_add.svg +1 -0
  37. package/dist/assets/icons/remove_circle.svg +1 -0
  38. package/dist/assets/icons/remove_circle_outline.svg +1 -0
  39. package/dist/assets/icons/send.svg +1 -0
  40. package/dist/assets/icons/view_week.svg +1 -0
  41. package/dist/assets/icons/warning.svg +1 -0
  42. package/dist/assets/svg-content.d.ts +39 -1
  43. package/dist/assets/svg-content.tsx +231 -7
  44. package/dist/components/LuiMenu/LuiMenu.d.ts +3 -0
  45. package/dist/components/common/Icons.d.ts +53 -3
  46. package/dist/govNZ-DS/FlexColumn.scss +1 -1
  47. package/dist/govNZ-DS/FlexContainer.scss +1 -1
  48. package/dist/govNZ-DS/FlexRow.scss +1 -1
  49. package/dist/govNZ-DS/FooterStandard.scss +1 -1
  50. package/dist/govNZ-DS/FooterWrapper.scss +1 -1
  51. package/dist/govNZ-DS/_index.scss +1 -1
  52. package/dist/lui.cjs.development.js +16 -19
  53. package/dist/lui.cjs.development.js.map +1 -1
  54. package/dist/lui.cjs.production.min.js +1 -1
  55. package/dist/lui.cjs.production.min.js.map +1 -1
  56. package/dist/lui.css +357 -376
  57. package/dist/lui.css.map +1 -1
  58. package/dist/lui.esm.js +16 -19
  59. package/dist/lui.esm.js.map +1 -1
  60. package/dist/scss/Components/ContextMenu/context-menu.scss +1 -1
  61. package/dist/scss/Components/ExpandingSection/expanding-section.scss +0 -1
  62. package/dist/scss/Components/Footer/footer.scss +6 -6
  63. package/dist/scss/Components/Header/header.scss +7 -5
  64. package/dist/scss/Components/HelpSection/help-section.scss +2 -2
  65. package/dist/scss/Components/LOLCommonMenu/LOLAuthorisedLink.scss +0 -1
  66. package/dist/scss/Components/LOLCommonMenu/LOLFirmSwitcherMenu.scss +1 -1
  67. package/dist/scss/Components/LuiFilterContainer/LuiFilterContainer.scss +5 -0
  68. package/dist/scss/Components/Menu/menu.scss +8 -0
  69. package/dist/scss/Components/Messaging/messaging.scss +8 -8
  70. package/dist/scss/Components/Modal/modal.scss +6 -6
  71. package/dist/scss/Components/Notifications/notifications.scss +5 -5
  72. package/dist/scss/Elements/Buttons/buttons.scss +16 -17
  73. package/dist/scss/Elements/Forms/FormComponents/FormSpacing.scss +7 -7
  74. package/dist/scss/Elements/Forms/FormComponents/Inputs.scss +0 -5
  75. package/dist/scss/Elements/Forms/FormComponents/RadiosCheckboxes.scss +92 -103
  76. package/dist/scss/Elements/Forms/forms.scss +14 -32
  77. package/dist/scss/Elements/Tables/tables.scss +1 -1
  78. package/dist/scss/Foundation/Utilities/AspectRatio.scss +1 -1
  79. package/dist/scss/Foundation/Utilities/Borders.scss +1 -1
  80. package/dist/scss/Foundation/Utilities/Breakpoint.scss +19 -7
  81. package/dist/scss/Foundation/Utilities/DLColumns.scss +21 -6
  82. package/dist/scss/Foundation/Utilities/Ease.scss +1 -8
  83. package/dist/scss/Foundation/Utilities/FitMedia.scss +2 -1
  84. package/dist/scss/Foundation/Utilities/FluidType.scss +28 -6
  85. package/dist/scss/Foundation/Utilities/Placeholder.scss +12 -5
  86. package/dist/scss/Foundation/Variables/FontVars.scss +7 -7
  87. package/dist/scss/Foundation/Variables/FormVars.scss +8 -8
  88. package/dist/scss/Foundation/Variables/SpacingVars.scss +17 -10
  89. package/dist/scss/Global/GenericElements/Lists.scss +2 -2
  90. package/dist/scss/Global/GenericElements/Typography.scss +5 -5
  91. package/dist/scss/Global/_index.scss +1 -1
  92. package/dist/scss/Vendor/_index.scss +1 -1
  93. package/dist/scss/Vendor/naturalize.scss +32 -39
  94. package/dist/scss/{Global → Vendor}/print.scss +0 -0
  95. package/dist/scss/base.scss +2 -1
  96. package/package.json +4 -1
  97. package/dist/assets/icons/icon-cart.svg +0 -1
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # Lui - Linz User Interface. It's written in CSS and has a React wrapper!
2
+
2
3
  ## You do not need to be using React to use Lui - come see us in #cop-lui
3
4
 
4
5
  ![Chromatic](https://github.com/linz/Lui/workflows/Chromatic/badge.svg)
@@ -7,11 +8,11 @@
7
8
 
8
9
  ![https://en.wikipedia.org/wiki/Onychophora](lui-worm.png)
9
10
 
10
- Lui [https://en.wikipedia.org/wiki/Onychophora]((Onychophora)) the happy UI worm!
11
+ Lui [https://en.wikipedia.org/wiki/Onychophora](<(Onychophora)>) the happy UI worm!
11
12
 
12
13
  Nomenclature: Lui is a backronym for Linz User Interface. Lui the library, is named after Lui the worm.
13
14
 
14
- *It was foreseen in the stars that Lui was destined for greatness, a UI library framework mascot.*
15
+ _It was foreseen in the stars that Lui was destined for greatness, a UI library framework mascot._
15
16
 
16
17
  ---
17
18
 
@@ -25,10 +26,9 @@ All styles are implemented in SASS and compiled to plain CSS. This means any tea
25
26
 
26
27
  There is lots to do in this project, often things will be left until there is demand. Please join the Slack channel #cop-lui.
27
28
 
28
-
29
29
  ### Layouts
30
30
 
31
- TODO: Docs about layouts
31
+ TODO: Docs about layouts
32
32
 
33
33
  # How to consume
34
34
 
@@ -83,7 +83,7 @@ Please also see [how to add fonts](https://github.com/linz/lui#adding-fonts)
83
83
 
84
84
  Then at the root of your application:
85
85
 
86
- `import "@linzjs/lui/dist/lui.scss";`
86
+ `import "@linzjs/lui/dist/scss/base.scss";`
87
87
 
88
88
  Note: if you are using Create React App, you'll need to install `sass` and uninstall `node-sass`
89
89
 
@@ -93,11 +93,13 @@ Lui using Google's Material icons, make sure you install them with [how to add f
93
93
  . The icons can be viewed here: https://material.io/resources/icons/?icon=more_vert&style=baseline
94
94
 
95
95
  To use it in HTML:
96
+
96
97
  ```
97
98
  <i class={"material-icons-round"}>more_vert</i>
98
99
  ```
99
100
 
100
- And in React:
101
+ And in React:
102
+
101
103
  ```
102
104
  <i className={"material-icons-round"}>more_vert</i>
103
105
  ```
@@ -133,10 +135,11 @@ How can we get a good API? Before writing any code, mock up the API. Use a white
133
135
  You'll get some wonderful feedback from Team Lui, either in the bi-weekly COP meetup or in #cop-lui
134
136
 
135
137
  Any tips for a good API?
138
+
136
139
  - Aim for composition
137
140
  - https://reactjs.org/docs/composition-vs-inheritance.html
138
141
  - https://www.youtube.com/watch?v=eLNS6GMejjw
139
- - Aim for encapsulation
142
+ - Aim for encapsulation
140
143
  - https://kyleshevlin.com/use-encapsulation
141
144
  - There are lots more. Please PR to this list!
142
145
 
@@ -229,7 +232,8 @@ TLDR: generally use `feat:` to add features and `fix:` for bug fixes
229
232
 
230
233
  # CI/CD and Deployment
231
234
 
232
- On every push (to any branch), the CI Pipeline will run
235
+ On every push (to any branch), the CI Pipeline will run
236
+
233
237
  - linting
234
238
  - formatting
235
239
  - React tests
@@ -240,7 +244,7 @@ When ever a new release is pushed to master, the CI/CD Pipeline will build and (
240
244
 
241
245
  # Releases
242
246
 
243
- Releasing is done automatically. Every push to master would be analysed by CI if a release is needed depending on the commit messages since the last release (which is the commit tagged with the format v{version}).
247
+ Releasing is done automatically. Every push to master would be analysed by CI if a release is needed depending on the commit messages since the last release (which is the commit tagged with the format v{version}).
244
248
 
245
249
  If you intend to trigger a release then you should ensure that your commit messages follow the [conventional commit format](#release-notes).
246
250
 
@@ -253,8 +257,10 @@ Jump into #cop-lui if you have any ideas and send a PR.
253
257
  When you create a new scss class, import it inside the base.scss in order to use it
254
258
 
255
259
  ### Lui Forms without Formik
260
+
256
261
  If you want, for example, a LuiCheckbox but not the React version as it is coupled with LuiFormikForm
257
262
  Then you can check the plain HTML and use the classNames, eg.
263
+
258
264
  ```
259
265
  <div class="lui-checkbox-container">
260
266
  <input
@@ -281,7 +287,7 @@ Here is how to wrap a button in a React Router `<Link/>`
281
287
 
282
288
  # Recommended Libs
283
289
 
284
- Below is a list of companion libs that Lui is either using
290
+ Below is a list of companion libs that Lui is either using
285
291
 
286
292
  ### Modals
287
293
 
@@ -294,4 +300,3 @@ There have been a few experiments with Date pickers. Current advise is to use th
294
300
  ### Forms
295
301
 
296
302
  Lui React uses Formik and the React components are coupled. Long term plans are to have un-coupled versions: https://github.com/linz/Lui/issues/112
297
-
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 19.219q1.594 0 3.352-.938T18 15.984q-.047-1.313-2.109-2.203T12 12.89t-3.891.867T6 15.984q.891 1.359 2.648 2.297t3.352.938zm0-14.203q-1.219 0-2.109.891T9 8.016t.891 2.109 2.109.891 2.109-.891T15 8.016t-.891-2.109T12 5.016zm0-3q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.016 12.984v-1.969h-4.031V6.984h-1.969v4.031H6.985v1.969h4.031v4.031h1.969v-4.031h4.031zM12 2.016q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm.984 4.968v4.031h4.031v1.969h-4.031v4.031h-1.969v-4.031H6.984v-1.969h4.031V6.984h1.969z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.016 11.016v1.969H7.828l5.578 5.625L12 20.016 3.984 12 12 3.984l1.406 1.406-5.578 5.625h12.188z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.836 3.891 9.727 12l8.109 8.109-1.781 1.781-9.891-9.891 9.891-9.891z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.984 9.492h10.031l-5.016 5.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.984 14.508 12 9.492l5.016 5.016H6.985z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m5.93 4.125 2.156-2.109L18.07 12l-9.984 9.984-2.156-2.109L13.852 12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.016 12.023q0-2.297 1.594-3.914t3.891-1.617h10.5q1.641 0 2.813 1.195t1.172 2.836-1.172 2.813-2.813 1.172H9.517q-1.031 0-1.781-.727t-.75-1.758.75-1.781 1.781-.75h7.5v2.016H9.423q-.422 0-.422.492t.422.492h8.578q.797 0 1.406-.586t.609-1.383-.609-1.406-1.406-.609h-10.5q-1.453 0-2.484 1.031t-1.031 2.484 1.031 2.461 2.484 1.008h9.516v2.016H7.501q-2.297 0-3.891-1.594t-1.594-3.891z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 20.016h24V24H0v-3.984zM20.719 4.031 18.75 6 15 2.25 16.969.281Q17.25 0 17.672 0t.703.281l2.344 2.344q.281.281.281.703t-.281.703zm-2.953 2.953L7.735 17.015h-3.75v-3.75L14.016 3.234z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.789 15.891 19.383 5.297l1.406 1.406-12 12-5.578-5.578 1.406-1.406z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.984 17.016 9-9-1.406-1.453-7.594 7.594-3.563-3.563L5.015 12zm2.016-15q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm4.594 5.578L18 9l-8.016 8.016L5.015 12l1.406-1.406 3.563 3.563z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.984 6.422 13.406 12l5.578 5.578-1.406 1.406L12 13.406l-5.578 5.578-1.406-1.406L10.594 12 5.016 6.422l1.406-1.406L12 10.594l5.578-5.578z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 6.984V3H2.016v18h19.969V6.984h-9.984zm-2.016 12h-6v-1.969h6v1.969zm0-3.984h-6v-2.016h6V15zm0-3.984h-6V9h6v2.016zm0-4.032h-6V5.015h6v1.969zm10.032 12H12V9h8.016v9.984zM18 11.016h-3.984v1.969H18v-1.969zM18 15h-3.984v2.016H18V15z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m20.719 7.031-1.828 1.828-3.75-3.75 1.828-1.828Q17.25 3 17.672 3t.703.281l2.344 2.344q.281.281.281.703t-.281.703zM3 17.25 14.063 6.187l3.75 3.75L6.75 21H3v-3.75z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.984 12.984v-6h-1.969v6h1.969zm0 4.032V15h-1.969v2.016h1.969zm-.984-15q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm-.984 4.968h1.969v6h-1.969v-6zm0 8.016h1.969v2.016h-1.969V15z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 8.297 6 6-1.406 1.406L12 11.109l-4.594 4.594L6 14.297z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.594 8.297 18 9.703l-6 6-6-6 1.406-1.406L12 12.891z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 12.984v-1.969h12v1.969H6zM3 6h18v2.016H3V6zm6.984 12v-2.016h4.031V18H9.984z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.875 5.508H19.5v9.984h-7.031l-.375-1.969H6.469v6.984H4.5V3.491h9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8.016V3.985l8.016 8.016L12 20.017v-4.031H3.984V8.017H12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.984 19.992V9.023H5.015v10.969h13.969zm-3-18H18v2.016h.984q.797 0 1.406.609t.609 1.406v13.969q0 .797-.609 1.406t-1.406.609H5.015q-.844 0-1.43-.586t-.586-1.43V6.022q0-.797.586-1.406t1.43-.609h.984V1.991h2.016v2.016h7.969V1.991zm1.032 11.016v5.016H12v-5.016h5.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.484 13.5 5.015 18h13.969l-4.5-6-3.469 4.5zM21 18.984q0 .797-.609 1.406t-1.406.609H5.016q-.797 0-1.406-.609t-.609-1.406V5.015q0-.797.609-1.406T5.016 3h13.969q.797 0 1.406.609T21 5.015v13.969z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.406 8.297 12 12.891l4.594-4.594L18 9.703l-6 6-6-6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.703 16.594 14.297 18l-6-6 6-6 1.406 1.406L11.109 12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.297 16.594 12.891 12 8.297 7.406 9.703 6l6 6-6 6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.406 15.703 6 14.297l6-6 6 6-1.406 1.406L12 11.109z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.703 7.406 11.109 12l4.594 4.594L14.297 18l-6-6 6-6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.703 6 6 6-6 6-1.406-1.406L12.891 12 8.297 7.406z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.5 6.516q-.797 0-1.406.586t-.609 1.383.609 1.406 1.406.609 1.406-.609.609-1.406-.609-1.383-1.406-.586zm0 5.484q-1.453 0-2.484-1.031t-1.031-2.484 1.031-2.461T16.5 5.016t2.484 1.008 1.031 2.461-1.031 2.484T16.5 12zm-9-5.484q-.797 0-1.406.586t-.609 1.383.609 1.406T7.5 10.5t1.406-.609.609-1.406-.609-1.383T7.5 6.516zM7.5 12q-1.453 0-2.484-1.031T3.985 8.485t1.031-2.461T7.5 5.016t2.484 1.008 1.031 2.461-1.031 2.484T7.5 12zm14.016 5.484v-1.219q0-.469-1.664-1.125t-3.352-.656q-1.219 0-3 .563.516.609.516 1.219v1.219h7.5zm-9 0v-1.219q0-.469-1.664-1.125T7.5 14.484t-3.352.656-1.664 1.125v1.219h10.031zm3.984-4.5q2.016 0 4.266.914t2.25 2.367v2.719H.985v-2.719q0-1.453 2.25-2.367t4.266-.914q2.203 0 4.5 1.031 2.297-1.031 4.5-1.031z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14.016q2.531 0 5.273 1.102t2.742 2.883v2.016H3.984v-2.016q0-1.781 2.742-2.883t5.273-1.102zM12 12q-1.641 0-2.813-1.172T8.015 8.015t1.172-2.836T12 3.984t2.813 1.195 1.172 2.836-1.172 2.813T12 12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15 14.016q2.531 0 5.273 1.102t2.742 2.883v2.016H6.984v-2.016q0-1.781 2.742-2.883t5.273-1.102zM6 9.984h3V12H6v3H3.984v-3h-3V9.984h3v-3H6v3zM15 12q-1.641 0-2.813-1.172t-1.172-2.813 1.172-2.836T15 3.984t2.813 1.195 1.172 2.836-1.172 2.813T15 12z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.016 12.984v-1.969H6.985v1.969h10.031zM12 2.016q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm-5.016 9h10.031v1.969H6.984v-1.969z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.5 21v-6.984L16.5 12l-15-2.016V3l21 9z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.476 5.016q.422 0 .727.281t.305.703v12q0 .422-.305.703t-.727.281h-3q-.422 0-.703-.281T9.492 18V6q0-.422.281-.703t.703-.281h3zm7.032 0q.422 0 .703.281t.281.703v12q0 .422-.281.703t-.703.281h-3q-.422 0-.727-.281T16.476 18V6q0-.422.305-.703t.727-.281h3zm-14.016 0q.422 0 .703.281T7.476 6v12q0 .422-.281.703t-.703.281h-3q-.422 0-.703-.281T2.508 18V6q0-.422.281-.703t.703-.281h3z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.984 14.508v-4.031h-1.969v4.031h1.969zm0 3.984v-2.016h-1.969v2.016h1.969zm-12 3L12 2.508l11.016 18.984H.985z"/></svg>
@@ -1,2 +1,40 @@
1
1
  /// <reference types="react" />
2
- export declare const icon_icon_cart: JSX.Element;
2
+ export declare const ic_account_circle: JSX.Element;
3
+ export declare const ic_add_circle: JSX.Element;
4
+ export declare const ic_add_circle_outline: JSX.Element;
5
+ export declare const ic_arrow_back: JSX.Element;
6
+ export declare const ic_arrow_back_ios: JSX.Element;
7
+ export declare const ic_arrow_drop_down: JSX.Element;
8
+ export declare const ic_arrow_drop_up: JSX.Element;
9
+ export declare const ic_arrow_forward_ios: JSX.Element;
10
+ export declare const ic_attachment: JSX.Element;
11
+ export declare const ic_border_color: JSX.Element;
12
+ export declare const ic_check: JSX.Element;
13
+ export declare const ic_check_circle: JSX.Element;
14
+ export declare const ic_check_circle_outline: JSX.Element;
15
+ export declare const ic_clear: JSX.Element;
16
+ export declare const ic_corporate_fare: JSX.Element;
17
+ export declare const ic_create: JSX.Element;
18
+ export declare const ic_error: JSX.Element;
19
+ export declare const ic_error_outline: JSX.Element;
20
+ export declare const ic_expand_less: JSX.Element;
21
+ export declare const ic_expand_more: JSX.Element;
22
+ export declare const ic_filter_list: JSX.Element;
23
+ export declare const ic_flag: JSX.Element;
24
+ export declare const ic_forward: JSX.Element;
25
+ export declare const ic_insert_invitation: JSX.Element;
26
+ export declare const ic_insert_photo: JSX.Element;
27
+ export declare const ic_keyboard_arrow_down: JSX.Element;
28
+ export declare const ic_keyboard_arrow_left: JSX.Element;
29
+ export declare const ic_keyboard_arrow_right: JSX.Element;
30
+ export declare const ic_keyboard_arrow_up: JSX.Element;
31
+ export declare const ic_navigate_before: JSX.Element;
32
+ export declare const ic_navigate_next: JSX.Element;
33
+ export declare const ic_people_outline: JSX.Element;
34
+ export declare const ic_person: JSX.Element;
35
+ export declare const ic_person_add: JSX.Element;
36
+ export declare const ic_remove_circle: JSX.Element;
37
+ export declare const ic_remove_circle_outline: JSX.Element;
38
+ export declare const ic_send: JSX.Element;
39
+ export declare const ic_view_week: JSX.Element;
40
+ export declare const ic_warning: JSX.Element;
@@ -6,13 +6,237 @@ import React from 'react';
6
6
 
7
7
  // @TODO This is a generated file, nothing is safe.
8
8
 
9
- export const icon_icon_cart = (
10
- <svg xmlns="http://www.w3.org/2000/svg">
11
- <path
12
- d="M29.792 18.75H12.49l.386 1.875H28.72c.91 0 1.583.838 1.382 1.718l-.326 1.422a3.28 3.28 0 0 1 1.864 2.954c0 1.828-1.506 3.307-3.354 3.28-1.76-.024-3.208-1.443-3.256-3.19a3.26 3.26 0 0 1 .992-2.434H13.646a3.26 3.26 0 0 1 .993 2.344c0 1.864-1.566 3.365-3.463 3.277-1.685-.077-3.055-1.428-3.144-3.1a3.274 3.274 0 0 1 1.656-3.023L5.542 3.75H1.417C.634 3.75 0 3.12 0 2.344v-.938C0 .63.634 0 1.417 0h6.052c.673 0 1.253.47 1.388 1.124l.54 2.626h23.186c.909 0 1.583.838 1.381 1.718l-2.79 12.187a1.414 1.414 0 0 1-1.382 1.095z"
13
- fill="#989189"
14
- fill-rule="evenodd"
15
- />
9
+ export const ic_account_circle = (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
11
+ <path d="M12 19.219q1.594 0 3.352-.938T18 15.984q-.047-1.313-2.109-2.203T12 12.89t-3.891.867T6 15.984q.891 1.359 2.648 2.297t3.352.938zm0-14.203q-1.219 0-2.109.891T9 8.016t.891 2.109 2.109.891 2.109-.891T15 8.016t-.891-2.109T12 5.016zm0-3q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z" />
12
+ </svg>
13
+ );
14
+
15
+ export const ic_add_circle = (
16
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
17
+ <path d="M17.016 12.984v-1.969h-4.031V6.984h-1.969v4.031H6.985v1.969h4.031v4.031h1.969v-4.031h4.031zM12 2.016q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z" />
18
+ </svg>
19
+ );
20
+
21
+ export const ic_add_circle_outline = (
22
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
23
+ <path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm.984 4.968v4.031h4.031v1.969h-4.031v4.031h-1.969v-4.031H6.984v-1.969h4.031V6.984h1.969z" />
24
+ </svg>
25
+ );
26
+
27
+ export const ic_arrow_back = (
28
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
29
+ <path d="M20.016 11.016v1.969H7.828l5.578 5.625L12 20.016 3.984 12 12 3.984l1.406 1.406-5.578 5.625h12.188z" />
30
+ </svg>
31
+ );
32
+
33
+ export const ic_arrow_back_ios = (
34
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
35
+ <path d="M17.836 3.891 9.727 12l8.109 8.109-1.781 1.781-9.891-9.891 9.891-9.891z" />
36
+ </svg>
37
+ );
38
+
39
+ export const ic_arrow_drop_down = (
40
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
41
+ <path d="M6.984 9.492h10.031l-5.016 5.016z" />
42
+ </svg>
43
+ );
44
+
45
+ export const ic_arrow_drop_up = (
46
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
47
+ <path d="M6.984 14.508 12 9.492l5.016 5.016H6.985z" />
48
+ </svg>
49
+ );
50
+
51
+ export const ic_arrow_forward_ios = (
52
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
53
+ <path d="m5.93 4.125 2.156-2.109L18.07 12l-9.984 9.984-2.156-2.109L13.852 12z" />
54
+ </svg>
55
+ );
56
+
57
+ export const ic_attachment = (
58
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
59
+ <path d="M2.016 12.023q0-2.297 1.594-3.914t3.891-1.617h10.5q1.641 0 2.813 1.195t1.172 2.836-1.172 2.813-2.813 1.172H9.517q-1.031 0-1.781-.727t-.75-1.758.75-1.781 1.781-.75h7.5v2.016H9.423q-.422 0-.422.492t.422.492h8.578q.797 0 1.406-.586t.609-1.383-.609-1.406-1.406-.609h-10.5q-1.453 0-2.484 1.031t-1.031 2.484 1.031 2.461 2.484 1.008h9.516v2.016H7.501q-2.297 0-3.891-1.594t-1.594-3.891z" />
60
+ </svg>
61
+ );
62
+
63
+ export const ic_border_color = (
64
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
65
+ <path d="M0 20.016h24V24H0v-3.984zM20.719 4.031 18.75 6 15 2.25 16.969.281Q17.25 0 17.672 0t.703.281l2.344 2.344q.281.281.281.703t-.281.703zm-2.953 2.953L7.735 17.015h-3.75v-3.75L14.016 3.234z" />
66
+ </svg>
67
+ );
68
+
69
+ export const ic_check = (
70
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
71
+ <path d="M8.789 15.891 19.383 5.297l1.406 1.406-12 12-5.578-5.578 1.406-1.406z" />
72
+ </svg>
73
+ );
74
+
75
+ export const ic_check_circle = (
76
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
77
+ <path d="m9.984 17.016 9-9-1.406-1.453-7.594 7.594-3.563-3.563L5.015 12zm2.016-15q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z" />
78
+ </svg>
79
+ );
80
+
81
+ export const ic_check_circle_outline = (
82
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
83
+ <path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm4.594 5.578L18 9l-8.016 8.016L5.015 12l1.406-1.406 3.563 3.563z" />
84
+ </svg>
85
+ );
86
+
87
+ export const ic_clear = (
88
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
89
+ <path d="M18.984 6.422 13.406 12l5.578 5.578-1.406 1.406L12 13.406l-5.578 5.578-1.406-1.406L10.594 12 5.016 6.422l1.406-1.406L12 10.594l5.578-5.578z" />
90
+ </svg>
91
+ );
92
+
93
+ export const ic_corporate_fare = (
94
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
95
+ <path d="M12 6.984V3H2.016v18h19.969V6.984h-9.984zm-2.016 12h-6v-1.969h6v1.969zm0-3.984h-6v-2.016h6V15zm0-3.984h-6V9h6v2.016zm0-4.032h-6V5.015h6v1.969zm10.032 12H12V9h8.016v9.984zM18 11.016h-3.984v1.969H18v-1.969zM18 15h-3.984v2.016H18V15z" />
96
+ </svg>
97
+ );
98
+
99
+ export const ic_create = (
100
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
101
+ <path d="m20.719 7.031-1.828 1.828-3.75-3.75 1.828-1.828Q17.25 3 17.672 3t.703.281l2.344 2.344q.281.281.281.703t-.281.703zM3 17.25 14.063 6.187l3.75 3.75L6.75 21H3v-3.75z" />
102
+ </svg>
103
+ );
104
+
105
+ export const ic_error = (
106
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
107
+ <path d="M12.984 12.984v-6h-1.969v6h1.969zm0 4.032V15h-1.969v2.016h1.969zm-.984-15q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z" />
108
+ </svg>
109
+ );
110
+
111
+ export const ic_error_outline = (
112
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
113
+ <path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm-.984 4.968h1.969v6h-1.969v-6zm0 8.016h1.969v2.016h-1.969V15z" />
114
+ </svg>
115
+ );
116
+
117
+ export const ic_expand_less = (
118
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
119
+ <path d="m12 8.297 6 6-1.406 1.406L12 11.109l-4.594 4.594L6 14.297z" />
120
+ </svg>
121
+ );
122
+
123
+ export const ic_expand_more = (
124
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
125
+ <path d="M16.594 8.297 18 9.703l-6 6-6-6 1.406-1.406L12 12.891z" />
126
+ </svg>
127
+ );
128
+
129
+ export const ic_filter_list = (
130
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
131
+ <path d="M6 12.984v-1.969h12v1.969H6zM3 6h18v2.016H3V6zm6.984 12v-2.016h4.031V18H9.984z" />
132
+ </svg>
133
+ );
134
+
135
+ export const ic_flag = (
136
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
137
+ <path d="M13.875 5.508H19.5v9.984h-7.031l-.375-1.969H6.469v6.984H4.5V3.491h9z" />
138
+ </svg>
139
+ );
140
+
141
+ export const ic_forward = (
142
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
143
+ <path d="M12 8.016V3.985l8.016 8.016L12 20.017v-4.031H3.984V8.017H12z" />
144
+ </svg>
145
+ );
146
+
147
+ export const ic_insert_invitation = (
148
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
149
+ <path d="M18.984 19.992V9.023H5.015v10.969h13.969zm-3-18H18v2.016h.984q.797 0 1.406.609t.609 1.406v13.969q0 .797-.609 1.406t-1.406.609H5.015q-.844 0-1.43-.586t-.586-1.43V6.022q0-.797.586-1.406t1.43-.609h.984V1.991h2.016v2.016h7.969V1.991zm1.032 11.016v5.016H12v-5.016h5.016z" />
150
+ </svg>
151
+ );
152
+
153
+ export const ic_insert_photo = (
154
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
155
+ <path d="M8.484 13.5 5.015 18h13.969l-4.5-6-3.469 4.5zM21 18.984q0 .797-.609 1.406t-1.406.609H5.016q-.797 0-1.406-.609t-.609-1.406V5.015q0-.797.609-1.406T5.016 3h13.969q.797 0 1.406.609T21 5.015v13.969z" />
156
+ </svg>
157
+ );
158
+
159
+ export const ic_keyboard_arrow_down = (
160
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
161
+ <path d="M7.406 8.297 12 12.891l4.594-4.594L18 9.703l-6 6-6-6z" />
162
+ </svg>
163
+ );
164
+
165
+ export const ic_keyboard_arrow_left = (
166
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
167
+ <path d="M15.703 16.594 14.297 18l-6-6 6-6 1.406 1.406L11.109 12z" />
168
+ </svg>
169
+ );
170
+
171
+ export const ic_keyboard_arrow_right = (
172
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
173
+ <path d="M8.297 16.594 12.891 12 8.297 7.406 9.703 6l6 6-6 6z" />
174
+ </svg>
175
+ );
176
+
177
+ export const ic_keyboard_arrow_up = (
178
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
179
+ <path d="M7.406 15.703 6 14.297l6-6 6 6-1.406 1.406L12 11.109z" />
180
+ </svg>
181
+ );
182
+
183
+ export const ic_navigate_before = (
184
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
185
+ <path d="M15.703 7.406 11.109 12l4.594 4.594L14.297 18l-6-6 6-6z" />
186
+ </svg>
187
+ );
188
+
189
+ export const ic_navigate_next = (
190
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
191
+ <path d="m9.703 6 6 6-6 6-1.406-1.406L12.891 12 8.297 7.406z" />
192
+ </svg>
193
+ );
194
+
195
+ export const ic_people_outline = (
196
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
197
+ <path d="M16.5 6.516q-.797 0-1.406.586t-.609 1.383.609 1.406 1.406.609 1.406-.609.609-1.406-.609-1.383-1.406-.586zm0 5.484q-1.453 0-2.484-1.031t-1.031-2.484 1.031-2.461T16.5 5.016t2.484 1.008 1.031 2.461-1.031 2.484T16.5 12zm-9-5.484q-.797 0-1.406.586t-.609 1.383.609 1.406T7.5 10.5t1.406-.609.609-1.406-.609-1.383T7.5 6.516zM7.5 12q-1.453 0-2.484-1.031T3.985 8.485t1.031-2.461T7.5 5.016t2.484 1.008 1.031 2.461-1.031 2.484T7.5 12zm14.016 5.484v-1.219q0-.469-1.664-1.125t-3.352-.656q-1.219 0-3 .563.516.609.516 1.219v1.219h7.5zm-9 0v-1.219q0-.469-1.664-1.125T7.5 14.484t-3.352.656-1.664 1.125v1.219h10.031zm3.984-4.5q2.016 0 4.266.914t2.25 2.367v2.719H.985v-2.719q0-1.453 2.25-2.367t4.266-.914q2.203 0 4.5 1.031 2.297-1.031 4.5-1.031z" />
198
+ </svg>
199
+ );
200
+
201
+ export const ic_person = (
202
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
203
+ <path d="M12 14.016q2.531 0 5.273 1.102t2.742 2.883v2.016H3.984v-2.016q0-1.781 2.742-2.883t5.273-1.102zM12 12q-1.641 0-2.813-1.172T8.015 8.015t1.172-2.836T12 3.984t2.813 1.195 1.172 2.836-1.172 2.813T12 12z" />
204
+ </svg>
205
+ );
206
+
207
+ export const ic_person_add = (
208
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
209
+ <path d="M15 14.016q2.531 0 5.273 1.102t2.742 2.883v2.016H6.984v-2.016q0-1.781 2.742-2.883t5.273-1.102zM6 9.984h3V12H6v3H3.984v-3h-3V9.984h3v-3H6v3zM15 12q-1.641 0-2.813-1.172t-1.172-2.813 1.172-2.836T15 3.984t2.813 1.195 1.172 2.836-1.172 2.813T15 12z" />
210
+ </svg>
211
+ );
212
+
213
+ export const ic_remove_circle = (
214
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
215
+ <path d="M17.016 12.984v-1.969H6.985v1.969h10.031zM12 2.016q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016z" />
216
+ </svg>
217
+ );
218
+
219
+ export const ic_remove_circle_outline = (
220
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
221
+ <path d="M12 20.016q3.281 0 5.648-2.367t2.367-5.648-2.367-5.648T12 3.986 6.352 6.353t-2.367 5.648 2.367 5.648T12 20.016zm0-18q4.125 0 7.055 2.93t2.93 7.055-2.93 7.055T12 21.986t-7.055-2.93-2.93-7.055 2.93-7.055T12 2.016zm-5.016 9h10.031v1.969H6.984v-1.969z" />
222
+ </svg>
223
+ );
224
+
225
+ export const ic_send = (
226
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
227
+ <path d="M1.5 21v-6.984L16.5 12l-15-2.016V3l21 9z" />
228
+ </svg>
229
+ );
230
+
231
+ export const ic_view_week = (
232
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
233
+ <path d="M13.476 5.016q.422 0 .727.281t.305.703v12q0 .422-.305.703t-.727.281h-3q-.422 0-.703-.281T9.492 18V6q0-.422.281-.703t.703-.281h3zm7.032 0q.422 0 .703.281t.281.703v12q0 .422-.281.703t-.703.281h-3q-.422 0-.727-.281T16.476 18V6q0-.422.305-.703t.727-.281h3zm-14.016 0q.422 0 .703.281T7.476 6v12q0 .422-.281.703t-.703.281h-3q-.422 0-.703-.281T2.508 18V6q0-.422.281-.703t.703-.281h3z" />
234
+ </svg>
235
+ );
236
+
237
+ export const ic_warning = (
238
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
239
+ <path d="M12.984 14.508v-4.031h-1.969v4.031h1.969zm0 3.984v-2.016h-1.969v2.016h1.969zm-12 3L12 2.508l11.016 18.984H.985z" />
16
240
  </svg>
17
241
  );
18
242