UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 330 B
import { ReactNode, JSX } from 'react'; export type CatalogEntityPropertyCardProps = { header: ReactNode; content: ReactNode; onClick?: () => void; hoverEffect?: boolean; }; export declare function CatalogEntityPropertyCard({ header, content, onClick, hoverEffect, }: CatalogEntityPropertyCardProps): JSX.Element;