mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 13:38:51 +00:00
21 lines
337 B
TypeScript
21 lines
337 B
TypeScript
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;
|