Add label for element

This commit is contained in:
2023-11-01 15:46:57 +07:00
parent 145b48452d
commit e39f7ab547
4 changed files with 12 additions and 8 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;