UNPKG

@blossom-carousel/react

Version:

A native-scroll-first carousel component for React.

9 lines (8 loc) 281 B
import { ReactNode } from 'react'; export interface DotScopeProps { index: number; active: boolean; forId: string; children: ReactNode; } export default function DotScope({ index, active, forId, children, }: DotScopeProps): import("react/jsx-runtime").JSX.Element;