@sproutsocial/racine 11.2.2 → 11.2.3
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/CHANGELOG.md +6 -0
- package/__flow__/Badge/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/__flow__/Badge/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import Box from "../Box";
|
|
|
7
7
|
type TypeProps = {
|
|
8
8
|
children?: React.Node,
|
|
9
9
|
/** DEPRECATED: Use children instead of text */
|
|
10
|
-
text
|
|
10
|
+
text?: React.Node,
|
|
11
11
|
/** Size default is deprecated in favor of small and large */
|
|
12
12
|
size?: "small" | "large" | "default",
|
|
13
13
|
badgeColor?:
|