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) 234 B
import { ReactNode } from 'react'; type TProps = { children: ReactNode; height?: "3" | "4" | "5" | "6" | "7"; }; export declare const HBox: ({ children, height }: TProps) => import("react/jsx-runtime").JSX.Element; export {};