5 lines
162 B

export function CardDetail({ children, title, ...props }: {
[x: string]: any;
children: any;
title: any;
}): import("react/jsx-runtime").JSX.Element;