mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface CarouselControlProps
|
|
extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
direction: 'prev' | 'next';
|
|
onClickHandler: () => void;
|
|
cssModule?: CSSModule;
|
|
directionText?: string;
|
|
}
|
|
|
|
export default class CarouselControl extends React.Component<
|
|
CarouselControlProps
|
|
> {}
|