@swan-io/lake 7.4.0 → 7.4.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/lake",
3
- "version": "7.4.0",
3
+ "version": "7.4.2",
4
4
  "engines": {
5
5
  "node": ">=18.0.0",
6
6
  "yarn": "^1.22.0"
@@ -8,6 +8,9 @@ import { Icon } from "./Icon";
8
8
  import { LakeText } from "./LakeText";
9
9
  const styles = StyleSheet.create({
10
10
  container: {
11
+ display: "inline-flex",
12
+ flexDirection: "row",
13
+ alignItems: "center",
11
14
  borderRadius: radii[4],
12
15
  height: spacings[24],
13
16
  },
@@ -64,7 +67,7 @@ export const Tag = ({ children, label, color = "gray", size = "small", icon, ari
64
67
  const tint50 = variant[50];
65
68
  const tint100 = variant[100];
66
69
  const tint200 = variant[200];
67
- return (_jsxs(Box, { direction: "row", alignItems: "center", style: [
70
+ return (_jsxs(View, { style: [
68
71
  styles.container,
69
72
  size === "large" && styles.larger,
70
73
  { backgroundColor: tint50 },