@colisweb/rescript-toolkit 5.35.6 → 5.35.7

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.35.6",
3
+ "version": "5.35.7",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -6225,3 +6225,17 @@ module FaArrowLeft = {
6225
6225
  external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6226
6226
  "FaArrowLeft"
6227
6227
  }
6228
+ module FaSearchPlus = {
6229
+ @module("react-icons/fa") @react.component
6230
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6231
+ "FaSearchPlus"
6232
+ }
6233
+ module FaSearchMinus = {
6234
+ @module("react-icons/fa") @react.component
6235
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6236
+ "FaSearchMinus"
6237
+ }
6238
+ module FaSync = {
6239
+ @module("react-icons/fa") @react.component
6240
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "FaSync"
6241
+ }