UNPKG

scholar-ed

Version:

A React component to embed Google Scholar profiles in a mobile-friendly way

9 lines (8 loc) 238 B
import React from "react"; interface ScholarProfileProps { scholarId: string; maxPublications?: number; className?: string; } declare const ScholarProfile: React.FC<ScholarProfileProps>; export default ScholarProfile;