@colisweb/rescript-toolkit 4.4.1 → 4.5.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/package.json +1 -1
- package/src/vendors/ReactIcons.res +25 -0
package/package.json
CHANGED
|
@@ -6086,3 +6086,28 @@ module FaCalculator = {
|
|
|
6086
6086
|
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6087
6087
|
"FaCalculator"
|
|
6088
6088
|
}
|
|
6089
|
+
module FaBatteryEmpty = {
|
|
6090
|
+
@module("react-icons/fa") @react.component
|
|
6091
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6092
|
+
"FaBatteryEmpty"
|
|
6093
|
+
}
|
|
6094
|
+
module FaBatteryFull = {
|
|
6095
|
+
@module("react-icons/fa") @react.component
|
|
6096
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6097
|
+
"FaBatteryFull"
|
|
6098
|
+
}
|
|
6099
|
+
module FaBatteryHalf = {
|
|
6100
|
+
@module("react-icons/fa") @react.component
|
|
6101
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6102
|
+
"FaBatteryHalf"
|
|
6103
|
+
}
|
|
6104
|
+
module FaBatteryQuarter = {
|
|
6105
|
+
@module("react-icons/fa") @react.component
|
|
6106
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6107
|
+
"FaBatteryQuarter"
|
|
6108
|
+
}
|
|
6109
|
+
module FaBatteryThreeQuarters = {
|
|
6110
|
+
@module("react-icons/fa") @react.component
|
|
6111
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6112
|
+
"FaBatteryThreeQuarters"
|
|
6113
|
+
}
|