Shimmers.tsx 405 B

123456789
  1. export const HorizontalShimmerWithIcon = () => (
  2. <div className="flex w-full flex-row items-center justify-between gap-2">
  3. <div className="flex flex-row items-center gap-3">
  4. <div className="shimmering-loader h-6 w-6 rounded-full"></div>
  5. <div className="shimmering-loader h-2 w-32 rounded-sm"></div>
  6. </div>
  7. <div className="shimmering-loader h-6 w-20 rounded-sm"></div>
  8. </div>
  9. )