import { cx } from "@karma/cva";

function Skeleton({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>) {
  return (
    <div
      className={cx("animate-pulse rounded-md bg-black/30", className)}
      {...props}
    />
  );
}

export { Skeleton };
