Skip to content

Commit

Permalink
fix(drawer): Drawer should extend div element
Browse files Browse the repository at this point in the history
  • Loading branch information
bejoinka committed Nov 27, 2024
1 parent ca2c40d commit ba10c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@awell-health/design-system",
"version": "0.12.5",
"version": "0.12.6",
"type": "module",
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/drawer/drawer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ReactNode, type FC } from 'react';
import clsx from 'clsx';

interface DrawerProps {
interface DrawerProps extends React.HTMLAttributes<HTMLDivElement> {
isOpen: boolean
children: ReactNode
drawerWidth?: number
Expand Down

0 comments on commit ba10c24

Please sign in to comment.