@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 +1 -1
- package/src/vendors/ReactIcons.res +14 -0
package/package.json
CHANGED
|
@@ -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
|
+
}
|