@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/dist/index.cjs +9 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/core/primitives/skeleton/skeleton.tsx +1 -2
package/package.json
CHANGED
|
@@ -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
|
-
|
|
64
|
+
...rest,
|
|
66
65
|
})}
|
|
67
66
|
data-animated={animated ? '' : undefined}
|
|
68
67
|
data-visible={visible ? '' : undefined}
|