@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
10 lines (9 loc) • 416 B
TypeScript
import { SCCourseType } from '@selfcommunity/types';
import { HTMLAttributes } from 'react';
export interface CourseTypePopoverProps {
course: SCCourseType;
className?: HTMLAttributes<HTMLDivElement>['className'];
}
declare function CourseTypePopover(props: CourseTypePopoverProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof CourseTypePopover>;
export default _default;