import * as React from "react"; import { IconButtonLineComponent } from '../../../lines/iconButtonLineComponent'; interface IGraphActionsBarProps { addKeyframe: () => void; removeKeyframe: () => void; handleValueChange: (e: React.ChangeEvent) => void; handleFrameChange: (e: React.ChangeEvent) => void; flatTangent: () => void; brokeTangents: () => void; setLerpMode: () => void; brokenMode: boolean; lerpMode: boolean; currentValue: number; currentFrame: number; title: string; close: (event: any) => void; enabled: boolean; } export class GraphActionsBar extends React.Component{ constructor(props: IGraphActionsBarProps) { super(props); } render() { return (
{this.props.title}
) => this.props.close(event)}>
) } }