UNPKG

react-modern-slider

Version:

A modern image carousel component built with react that supports boxes with different sizes. Demo: https://shamouni.github.io/shop-react

8 lines (7 loc) 225 B
import { ReactNode } from 'react'; type TProps = { children: ReactNode; width: "3" | "4" | "5" | "6"; }; export declare const VBox: ({ children, width }: TProps) => import("react/jsx-runtime").JSX.Element; export {};