react-native-lamantin
Version:
Set of components for https://lamantin.group development
14 lines (13 loc) • 375 B
TypeScript
/// <reference types="react" />
import { Color } from 'csstype';
import { ViewStyle } from 'react-native';
export interface CarouselPaginationProps {
current: number;
length: number;
style?: ViewStyle;
theme?: {
enabled: Color;
disabled: Color;
};
}
export default function CarouselPagination(props: CarouselPaginationProps): JSX.Element;