import { SlideOver } from '@hanzo/ui/product'
No examples yet.
export type SlideOverProps = {open: booleanonClose: () => void/** Which edge the panel slides from. Default right. */side?: 'right' | 'left'/** Panel width at lg+ (px). Below lg it is always full-screen. Default 420. */size?: number/** Optional header title — when set, SlideOver renders a header + a scroll body. */title?: ReactNode/** Optional header icon (tinted with `iconColor`). */icon?: IconLikeiconColor?: string/** Extra header content, right-aligned before the close button. */headerRight?: ReactNode/** Accessible label when no visible title is given. */ariaLabel?: string/** z-index for stacking (a pane opened over a drawer passes a higher value). */zIndex?: numberchildren: ReactNode}