You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature Request: Customizable Drawer Component with Direction Support
Is your feature request related to a problem? Please describe.
Currently, there isn't a straightforward way to implement a customizable drawer component that supports different directions (left, right, top, bottom) with smooth transitions. Developers often need to create custom implementations for common use cases like a hamburger menu, which can be repetitive and time-consuming.
Supports multiple directions: The drawer can slide in from left, right, top, or bottom based on the developer's configuration.
Smooth transitions: Includes smooth and customizable transitions for an enhanced user experience.
Easy integration: Designed with props for toggling visibility and controlling direction, making it simple for developers to use.
Feature Request: Customizable Drawer Component with Direction Support
Is your feature request related to a problem? Please describe.
Currently, there isn't a straightforward way to implement a customizable drawer component that supports different directions (left, right, top, bottom) with smooth transitions. Developers often need to create custom implementations for common use cases like a hamburger menu, which can be repetitive and time-consuming.
Supports multiple directions: The drawer can slide in from left, right, top, or bottom based on the developer's configuration.
Smooth transitions: Includes smooth and customizable transitions for an enhanced user experience.
Easy integration: Designed with props for toggling visibility and controlling direction, making it simple for developers to use.
type DrawerProps = {
isOpen: boolean;
direction?: "left" | "right" | "top" | "bottom";
onClose: () => void
children: React.ReactNode;
};
Drawer Content
;The text was updated successfully, but these errors were encountered: