# yatra/3.0.15/resources/js/components/ui/skeleton.tsx

Yatra – Travel Booking &amp; Tour Operator Software, version 3.0.15. 21 lines.

- Page: https://pluginprobe.com/plugins/yatra/3.0.15/code/resources/js/components/ui/skeleton.tsx
- Raw: https://pluginprobe.com/plugins/yatra/3.0.15/raw/resources/js/components/ui/skeleton.tsx
- Modified: 2026-04-14T03:47:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yatra/3.0.15/code/resources/js/components/ui/skeleton.tsx#L10-L20`.

```tsx
/**
 * Skeleton Loading Component
 * Displays animated placeholder content while data is loading
 */

import React from "react";

interface SkeletonProps {
  className?: string;
}

export const Skeleton: React.FC<SkeletonProps> = ({ className = "" }) => {
  return (
    <div
      className={`animate-pulse bg-gray-200 dark:bg-gray-700 rounded ${className}`}
    />
  );
};

export default Skeleton;

```
