@colisweb/rescript-toolkit 5.29.4 → 5.29.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "5.29.4",
3
+ "version": "5.29.6",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -1,5 +1,5 @@
1
1
  @react.component
2
- let make = () =>
2
+ let make = (~color=?, ~size=?) =>
3
3
  <div className="fixed left-0 top-0 w-full h-full flex flex-row justify-center items-center">
4
- <Toolkit__Ui_Spinner />
4
+ <Toolkit__Ui_Spinner ?color ?size />
5
5
  </div>
@@ -1,2 +1,2 @@
1
1
  @react.component
2
- let make: unit => React.element
2
+ let make: (~color: Toolkit__Ui_Spinner.color=?, ~size: Toolkit__Ui_Spinner.size=?) => React.element
@@ -6167,3 +6167,8 @@ module FaPlus = {
6167
6167
  @module("react-icons/fa") @react.component
6168
6168
  external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "FaPlus"
6169
6169
  }
6170
+ module FaHourglassHalf = {
6171
+ @module("react-icons/fa") @react.component
6172
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6173
+ "FaHourglassHalf"
6174
+ }