|
1 |
| -export * from './atoms' |
2 |
| -export * from './molecules' |
3 |
| -export * from './organisms' |
4 |
| -export * from './theme' |
| 1 | +// src/index.ts |
| 2 | +// Átomos |
| 3 | +export { Label } from './atoms/Label/Label' |
| 4 | +export { Progress } from './atoms/Progress/Progress' |
| 5 | +export { Ripples } from './atoms/Ripples/Ripples' |
| 6 | +export { TinyAlert } from './atoms/TinyAlert/TinyAlert' |
| 7 | +export * as Icons from './atoms/Icons' |
| 8 | + |
| 9 | +// Moléculas |
| 10 | +export { Btn } from './molecules/Buttons/Btn' |
| 11 | +export { BtnPrimary } from './molecules/Buttons/BtnPrimary' |
| 12 | +export { BtnSecondary } from './molecules/Buttons/BtnSecondary' |
| 13 | +export { BtnTertiary } from './molecules/Buttons/BtnTertiary' |
| 14 | +export { BtnLink } from './molecules/Buttons/BtnLink' |
| 15 | +export { NewTooltip } from './molecules/Tooltip/NewTooltip' |
| 16 | +export { UserWay } from './molecules/UserWay/UserWay' |
| 17 | +export { UserWayCookie } from './molecules/UserWay/UserWayCookie' |
| 18 | + |
| 19 | +// Organismos |
| 20 | +export { CourseList, CourseStatus, dataFake, maxWidthCoursesList } from './organisms/CourseList' |
| 21 | +export { Alert, FlashNotification, useFlashNotification } from './organisms/Alerts' |
| 22 | +export { ModalAlert } from './organisms/ModalAlert' |
| 23 | +export { Eventos } from './organisms/Events' |
| 24 | +export { Resources } from './organisms/Resources' |
| 25 | +export { CalendarDropdown, EventsList } from './organisms/Calendar' |
| 26 | + |
| 27 | +// Tema |
| 28 | +export { theme, vars } from './theme' |
0 commit comments