UNPKG

surf-design-system

Version:
14 lines (13 loc) 454 B
/** @jsxRuntime classic */ /** @jsx jsx */ import React from 'react'; export interface PaginationDot { id: number; selected: boolean; } export interface PaginationDotsProps { dotsData: PaginationDot[]; backgroundColor?: string; onClickDot: React.MouseEventHandler; } export default function PaginationDots({ dotsData, backgroundColor, onClickDot }: PaginationDotsProps): import("@emotion/react/jsx-runtime").JSX.Element;