diff --git a/.changeset/selfish-students-march.md b/.changeset/selfish-students-march.md new file mode 100644 index 0000000000..b8ea3961da --- /dev/null +++ b/.changeset/selfish-students-march.md @@ -0,0 +1,5 @@ +--- +'@sumup/circuit-ui': patch +--- + +Exported `NotificationInline` component. diff --git a/packages/circuit-ui/index.ts b/packages/circuit-ui/index.ts index f0227e8fde..6a39d02334 100644 --- a/packages/circuit-ui/index.ts +++ b/packages/circuit-ui/index.ts @@ -98,6 +98,8 @@ export { useNotificationToast } from './components/NotificationToast'; export type { NotificationToastProps } from './components/NotificationToast'; export { ToastProvider } from './components/ToastContext'; export type { ToastProviderProps } from './components/ToastContext'; +export { default as NotificationInline } from './components/NotificationInline'; +export type { NotificationInlineProps } from './components/NotificationInline'; // Layout export { default as Grid } from './components/Grid';