styled components hover

Solutions on MaxInterview for styled components hover by the best coders in the world

showing results for - "styled components hover"
Izia
25 May 2017
1const Link = styled.a`
2	text-decoration: none;
3	color: inherit;
4
5	&:hover {
6        //your code
7    }
8`;