Refactor code, fix UI and logic code

This commit is contained in:
2023-11-02 11:51:26 +07:00
parent 4e7e731fbd
commit 895e96216d
37 changed files with 330 additions and 202 deletions
@@ -0,0 +1,20 @@
import styled from 'styled-components';
const ButtonIcon = styled.button`
background: none;
border: none;
padding: 8px;
transition: all 0.2s;
border-radius: var(--radius-md);
&:hover {
background-color: var(--hover-background-color);
}
& svg {
width: 25px;
height: 25px;
}
`;
export default ButtonIcon;