Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* 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;