import React, { ReactNode } from 'react' import styled from 'styled-components' import { Colors } from '../../../../design' interface Props { href: string children?: ReactNode block?: boolean } export function Link({ href, block, children }: Props) { return ( {children ?? href} ) } const Anchor = styled.a` color: ${Colors.Link}; text-decoration: none; &.block { display: block; &::after { content: ' ยป'; } } `