You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
414 B
TypeScript
20 lines
414 B
TypeScript
import React from 'react';
|
|
|
|
import { SessionIconButton, SessionIconSize, SessionIconType } from './icon';
|
|
|
|
export class SessionScrollButton extends React.PureComponent {
|
|
constructor(props: any) {
|
|
super(props);
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<SessionIconButton
|
|
iconType={SessionIconType.Chevron}
|
|
iconSize={SessionIconSize.Huge}
|
|
iconColor={'#FFFFFF'}
|
|
/>
|
|
);
|
|
}
|
|
}
|