import React from 'react'; import { SessionIconButton, SessionIconSize, SessionIconType } from './icon'; interface Props { onClick?: any; show?: boolean; } export class SessionScrollButton extends React.PureComponent { constructor(props: any) { super(props); } public render() { return ( <> {this.props.show && (
)} ); } }