import React from 'react'; import styled from 'styled-components'; import { MaterialBookmarkBorder } from '@t3n/icons'; import Box from '../Box'; import Button from '../Button'; import Link from '../Link'; import Modal from '../Modal'; import Text from '../Text'; export interface LegacyBookmarkModalProps { onClose: () => void; } const OverflowModalWrapper = styled(Box)` > div > div { overflow: visible; > div:first-child { top: -22px; right: -22px; } } `; const LegacyBookmarkModal: React.FC = ({ onClose, }) => { return ( Bitte melde dich an, um diesen Artikel in deiner persönlichen Merkliste auf t3n zu speichern. Du hast schon einen t3n-Account?{' '} Hier anmelden ); }; export default LegacyBookmarkModal;