-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3884 from thematters/fix/dialogbeta-handle-clickable
Fix dialogbeta handle clickable on mobile
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { useIntl } from 'react-intl' | ||
|
||
import styles from './styles.module.css' | ||
|
||
interface HandleProps { | ||
closeDialog: () => void | ||
} | ||
|
||
const Handle: React.FC<HandleProps> = ({ closeDialog, ...props }) => { | ||
const intl = useIntl() | ||
|
||
return ( | ||
<button | ||
type="button" | ||
className={styles.handle} | ||
aria-label={intl.formatMessage({ defaultMessage: 'Close' })} | ||
onClick={closeDialog} | ||
{...props} | ||
> | ||
<span className={styles.icon} /> | ||
</button> | ||
) | ||
} | ||
|
||
export default Handle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37e04a6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
matters-web – ./
matters-web-git-develop-matters.vercel.app
matters-web.vercel.app
matters-web-matters.vercel.app
web-dev.matters.town