// @flow import theme from 'shared/theme'; import * as React from 'react'; import styled from 'styled-components'; import { SectionCard, SectionTitle, SectionSubtitle, SectionCardFooter, } from 'src/components/settingsViews/style'; const Link = styled.a` font-size: 14px; font-weight: 600; cursor: pointer; color: ${theme.brand.default}; padding: 12px 16px; &:hover { color: ${theme.brand.alt}; } `; type Props = { user: Object, }; class DownloadDataForm extends React.Component { render() { const { user } = this.props; if (!user) return null; return ( Download my data You can download your personal data at any time. Download my data ); } } export default DownloadDataForm;