UNPKG

@desci-labs/frontend-components

Version:

A library for commonly used components on the DeSci Frontend web apps

12 lines 477 B
import { default as React } from 'react'; export interface PreviewCardProps { /** The children of the preview card */ children: React.ReactNode; /** The title of the preview card */ title?: string; /** The class name of the preview card */ className?: string; } declare const PreviewCard: ({ children, title, className }: PreviewCardProps) => import("react/jsx-runtime").JSX.Element; export default PreviewCard; //# sourceMappingURL=PreviewCard.d.ts.map