UNPKG

@codeworker.br/govbr-tw-react

Version:

Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.

14 lines (13 loc) 727 B
import { ComponentPropsWithoutRef } from "react"; import type { VariantProps } from "class-variance-authority"; import { carouselSliderVariants } from "./variants"; type CarouselSliderBaseProps = ComponentPropsWithoutRef<"div">; export interface CarouselSliderProps extends CarouselSliderBaseProps, VariantProps<typeof carouselSliderVariants> { itemsPerView?: number; loop?: boolean; showIndicators?: boolean; floatingControls?: boolean; border?: boolean; } export declare const CarouselSlider: ({ className, children, itemsPerView, loop, showIndicators, floatingControls, variant, density, border, ...props }: CarouselSliderProps) => import("react/jsx-runtime").JSX.Element; export default CarouselSlider;