@desci-labs/frontend-components
Version:
A library for commonly used components on the DeSci Frontend web apps
14 lines • 535 B
TypeScript
/**
* A component that displays the abstract of a published research.
* @component
* @example
* ```tsx
* <AbstractViewer abstract="We conducted a genome-wide association study (GWAS) on income among individuals of European descent..." />
* ```
*/
export interface AbstractViewerProps {
/** The abstract of the published research */
abstract: string;
}
export declare const AbstractViewer: ({ abstract }: AbstractViewerProps) => import("react/jsx-runtime").JSX.Element | null;
//# sourceMappingURL=AbstractViewer.d.ts.map