import { CardSubtitleProps } from "./CardSubtitleProps";
import { CardSubtitle as KendoCardSubtitle } from "@progress/kendo-react-layout";

const CardSubtitle: React.FC<CardSubtitleProps> = ({
  dataTestId,
  children,
  className,
  style,
}) => (
  <div data-test-id={dataTestId}>
    <KendoCardSubtitle className={className} style={style}>
      {children}
    </KendoCardSubtitle>
  </div>
);

export default CardSubtitle;
