1 2 3 4 5 6 7 8 9 10 11
import styled from "styled-components"; export const Text = styled.p` text-align: center; color: ${({ theme }) => theme.text}; margin-top: 50px; `; export const Link = styled.a` color: ${({ theme }) => theme.text}; `;
[PATCH repo_name]