"use client";
import React, { ComponentProps } from "react";
import { CommandLoading as BaseLoading } from "cmdk";

export type CommandLoadingProps = ComponentProps<typeof BaseLoading>;

export const CommandLoading: React.FC<CommandLoadingProps> = (props) => {
    return (
        <BaseLoading
          {...props} />
    );
};
