Update API reports

Signed-off-by: Sofia Sjöblad <ssjoblad@spotify.com>
This commit is contained in:
Sofia Sjöblad
2025-08-14 09:46:27 +02:00
parent a251b3e084
commit 6340c0446d
+15
View File
@@ -207,18 +207,33 @@ export const Card: ForwardRefExoticComponent<
CardProps & RefAttributes<HTMLDivElement>
>;
// @public
export const CardBody: ForwardRefExoticComponent<
CardBodyProps & RefAttributes<HTMLDivElement>
>;
// @public
export interface CardBodyProps extends React.HTMLAttributes<HTMLDivElement> {
// (undocumented)
children?: React.ReactNode;
}
// @public
export const CardFooter: ForwardRefExoticComponent<
CardFooterProps & RefAttributes<HTMLDivElement>
>;
// @public
export interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
// (undocumented)
children?: React.ReactNode;
}
// @public
export const CardHeader: ForwardRefExoticComponent<
CardHeaderProps & RefAttributes<HTMLDivElement>
>;
// @public
export interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
// (undocumented)