import * as React from 'react'; import { Props, State } from './type'; import { Container, Title, MoreLinkBox, MoreTitle, MoreIconSvg } from './index.style' const MoreSvgIcon = () => ( ); export class LofterTitleAndMore extends React.Component { public static defaultProps = new Props(); public state = new State(); public render() { let { style, title, color, moreTitle, moreLink, marginTop, bold } = this.props; return ( {title} { moreTitle && moreLink && ( {moreTitle} ) } ) } }