Alexandru Cambose 1 month ago
parent
commit
bf22b39581
1 changed files with 1 additions and 4 deletions
  1. 1 4
      packages/component-library/src/Skeleton/index.tsx

+ 1 - 4
packages/component-library/src/Skeleton/index.tsx

@@ -23,10 +23,7 @@ export const Skeleton = ({
     {...(width &&
       !fill && { style: { "--skeleton-width": width } as CSSProperties })}
     data-fill={fill ? "" : undefined}
-    className={clsx(
-      styles.skeleton,
-      className,
-    )}
+    className={clsx(styles.skeleton, className)}
   >
     <span className={clsx(styles.skeletonInner, className)} {...props}>
       <Label>{label ?? "Loading"}</Label>