chore: remove legacy SkeletonBlock component

This commit is contained in:
Sergey Krylov 2026-06-21 20:21:15 +03:00
parent 8ad5f3c70c
commit aa56c8a48d

View File

@ -1,20 +0,0 @@
export function SkeletonBlock({
width,
height,
borderRadius = 4,
}: {
width?: string | number;
height?: string | number;
borderRadius?: number;
}) {
return (
<div
className="skeleton"
style={{
width: width ?? '100%',
height: height ?? 16,
borderRadius,
}}
/>
);
}