Skip to content

Commit

Permalink
feat(components): added ClickAwayListener (#124)
Browse files Browse the repository at this point in the history
fix #123
  • Loading branch information
nebula-aac authored Oct 6, 2023
1 parent 038fe7e commit db1a133
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import {
ClickAwayListener as MuiClickAwayListener,
type ClickAwayListenerProps
} from '@mui/material';
export function ClickAwayListener(props: ClickAwayListenerProps) {
return <MuiClickAwayListener {...props} />;
}
1 change: 1 addition & 0 deletions packages/components/src/base/ClickAwayListener/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { ClickAwayListener } from './ClickAwayListener';

0 comments on commit db1a133

Please sign in to comment.