diff --git a/packages/ui/src/SlideOut/SlideOut.tsx b/packages/ui/src/SlideOut/SlideOut.tsx index 98c6d094..065c60dc 100644 --- a/packages/ui/src/SlideOut/SlideOut.tsx +++ b/packages/ui/src/SlideOut/SlideOut.tsx @@ -8,6 +8,7 @@ export type SlideOutEnterFrom = 'end' | 'start'; type Props = Readonly<{ children: React.ReactNode; + className: string; enterFrom?: SlideOutEnterFrom; isShown?: boolean; onClose?: () => void; @@ -40,6 +41,7 @@ const enterFromClasses: Record< export default function SlideOut({ children, + className, enterFrom = 'end', isShown = false, size, @@ -50,7 +52,10 @@ export default function SlideOut({ return ( - onClose?.()}> + onClose?.()}>