diff --git a/libs/ui/src/index.ts b/libs/ui/src/index.ts index 62e0c08e1..665a5d8d1 100644 --- a/libs/ui/src/index.ts +++ b/libs/ui/src/index.ts @@ -36,6 +36,7 @@ export * from './lib/search-hits-page-layout'; export * from './lib/select'; export * from './lib/service-messages'; export * from './lib/spinner'; +export * from './lib/sticky-footer-bar'; export * from './lib/tag'; export * from './lib/textarea-with-prefix'; export * from './lib/title-with-tag'; diff --git a/libs/ui/src/lib/sticky-footer-bar/index.tsx b/libs/ui/src/lib/sticky-footer-bar/index.tsx new file mode 100644 index 000000000..48c96f6ab --- /dev/null +++ b/libs/ui/src/lib/sticky-footer-bar/index.tsx @@ -0,0 +1,15 @@ +import { PropsWithChildren } from 'react'; +import classNames from 'classnames'; +import styles from './sticky-footer-bar.module.css'; + +const StickyFooterBar = ({ children }: PropsWithChildren) => { + return ( +