UNPKG

quickbuild

Version:

A mature, feature-complete application generator with an emphasis on speed

16 lines (11 loc) 190 B
/** * A link to a certain page, an anchor tag */ import styled from 'styled-components'; const A = styled.a` color: #41addd; &:hover { color: #6cc0e5; } `; export default A;