From cc6d0eb430da2f8818794aeabf503a06b9fe2a7d Mon Sep 17 00:00:00 2001 From: Ruggero Cino Date: Tue, 11 Jul 2023 17:58:47 +0200 Subject: [PATCH] Add missing export for breadcrumb component --- CHANGELOG.md | 4 ++++ src/components/index.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f192d1c14..1ec88952f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Add missing export for `breadcrumb` component + ## [0.2.1] - 2023-07-11 ### Fixed diff --git a/src/components/index.ts b/src/components/index.ts index 64d90f3cf..cb650a28a 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,6 +1,7 @@ export * from './alerts'; export * from './avatar'; export * from './backdrop'; +export * from './breadcrumb'; export * from './button'; export * from './cards'; export * from './checkbox';