From 2844a2bd71dcf1eb17a53992c10129b7496332e0 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 31 Oct 2023 17:41:43 +0100 Subject: feat(components): add an Overlay component * add useScrollbarWidth hook * add useScrollLock hook * add a new component to lock scroll with an overlay (it can be useful especially on small screens to prevent background contents to be scrolled) --- src/utils/hooks/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/utils/hooks/index.ts') diff --git a/src/utils/hooks/index.ts b/src/utils/hooks/index.ts index b98be04..3e8b410 100644 --- a/src/utils/hooks/index.ts +++ b/src/utils/hooks/index.ts @@ -19,7 +19,9 @@ export * from './use-reading-time'; export * from './use-redirection'; export * from './use-reduced-motion'; export * from './use-route-change'; +export * from './use-scroll-lock'; export * from './use-scroll-position'; +export * from './use-scrollbar-width'; export * from './use-settings'; export * from './use-state-change'; export * from './use-system-color-scheme'; -- cgit v1.2.3