Answers for "styled components animation on hover"

CSS
6

styled components hover

const Link = styled.a`
	text-decoration: none;
	color: inherit;

	&:hover {
        //your code
    }
`;
Posted by: Guest on February-07-2021

Browse Popular Code Answers by Language