-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRotatingArrow.tsx
39 lines (36 loc) · 908 Bytes
/
RotatingArrow.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React, { useRef } from 'react';
import ArrowForwardIcon from '@mui/icons-material/ArrowForward';
interface RotatingArrowProps {
onOpen: () => void;
}
const RotatingArrow = (props: RotatingArrowProps) => {
const { onOpen } = props;
const arrow = useRef() as React.MutableRefObject<HTMLDivElement>;
const handleClick = () => {
arrow.current.classList.toggle('rotated');
onOpen();
};
const handleKeydown = (e: React.KeyboardEvent<HTMLDivElement>) => {
if (e.key === 'Enter') {
arrow.current.classList.toggle('rotated');
onOpen();
}
};
return (
<div
className="arrow"
onClick={handleClick}
onKeyDown={handleKeydown}
ref={arrow}
role="button"
tabIndex={0}
>
<ArrowForwardIcon
fontSize="large"
htmlColor="#000"
className="icon"
/>
</div>
);
};
export default RotatingArrow;