We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9689c26 commit 4a5af08Copy full SHA for 4a5af08
chartlets.js/packages/lib/src/plugins/mui/Skeleton.tsx
@@ -25,12 +25,11 @@ export const Skeleton = ({
25
isLoading,
26
...props
27
}: SkeletonProps) => {
28
+ // Set default values if not available
29
const opacity: number = props.opacity ?? 0.7;
30
props.width = props.width ?? "100%";
31
props.height = props.height ?? "100%";
- console.log("opacity", opacity);
32
- console.log("props.width", props.width);
33
- console.log("props.height", props.height);
+
34
return (
35
<div style={{ position: "relative", ...style }} id={id}>
36
{children}
0 commit comments