@colisweb/rescript-toolkit 2.62.0 → 2.62.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.
- package/package.json +1 -1
- package/src/vendors/BsReactIcons.res +14 -0
package/package.json
CHANGED
|
@@ -5985,3 +5985,17 @@ module FaExclamationTriangle = {
|
|
|
5985
5985
|
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
5986
5986
|
"FaExclamationTriangle"
|
|
5987
5987
|
}
|
|
5988
|
+
module FaTimesCircle = {
|
|
5989
|
+
@module("react-icons/fa") @react.component
|
|
5990
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
5991
|
+
"FaTimesCircle"
|
|
5992
|
+
}
|
|
5993
|
+
module BiScan = {
|
|
5994
|
+
@module("react-icons/bi") @react.component
|
|
5995
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "BiScan"
|
|
5996
|
+
}
|
|
5997
|
+
module RiTruckLine = {
|
|
5998
|
+
@module("react-icons/ri") @react.component
|
|
5999
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6000
|
+
"RiTruckLine"
|
|
6001
|
+
}
|