@eclass/ui-kit 1.12.0 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ import { ProgressCourse, StatusCourse } from '@eclass/api';
3
+ interface props {
4
+ /** import { ProgressCourse } from '@eclass/api' */
5
+ progress: ProgressCourse;
6
+ /** import { StatusCourse } from '@eclass/api' */
7
+ status?: StatusCourse;
8
+ }
9
+ /**
10
+ * Devuelve estado en el que se encuentra el curso, por ejemplo:
11
+ *
12
+ * avance, inicio, curso aprovado, reprovado, finalizado
13
+ */
14
+ export declare function CourseStatus({ progress, status }: props): JSX.Element;
15
+ export {};
@@ -1,2 +1,3 @@
1
1
  export { CourseList } from './CourseList';
2
+ export { CourseStatus } from './components/CourseStatus';
2
3
  export { dataFake, maxWidthCoursesList } from './utils';