Scrolling button updated and animations to modals
parent
a0a5a61b29
commit
4d690768a6
@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
|
||||
import { SessionIconButton, SessionIconType, SessionIconSize } from './icon';
|
||||
|
||||
interface Props {
|
||||
count: number,
|
||||
}
|
||||
|
||||
export class SessionScrollButton extends React.PureComponent<Props> {
|
||||
constructor(props: any) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
public render() {
|
||||
console.log(`My count is: ${this.props.count}`);
|
||||
|
||||
return (
|
||||
<SessionIconButton
|
||||
iconType={SessionIconType.Chevron}
|
||||
iconSize={SessionIconSize.Huge}
|
||||
iconColor={"#FFFFFF"}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue