import React from "react" import "./index.css" type Props = { href: string children: string } export default class ClearButton extends React.PureComponent { public render() { return ( {this.props.children} ) } }