@sanity/ui 3.0.0-static.46 → 3.0.0-static.47

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": "@sanity/ui",
3
- "version": "3.0.0-static.46",
3
+ "version": "3.0.0-static.47",
4
4
  "keywords": [
5
5
  "react",
6
6
  "ui",
@@ -36,7 +36,6 @@ export function Skeleton<E extends SkeletonElementType = typeof DEFAULT_SKELETON
36
36
  animated = false,
37
37
  className,
38
38
  delay,
39
- radius,
40
39
  ...rest
41
40
  } = props as SkeletonProps<typeof DEFAULT_SKELETON_ELEMENT>
42
41
 
@@ -62,7 +61,7 @@ export function Skeleton<E extends SkeletonElementType = typeof DEFAULT_SKELETON
62
61
  {...rest}
63
62
  className={skeleton({
64
63
  className,
65
- radius,
64
+ ...rest,
66
65
  })}
67
66
  data-animated={animated ? '' : undefined}
68
67
  data-visible={visible ? '' : undefined}