UNPKG

@stakefish/ui

Version:

<div align="center"> <a href="https://www.npmjs.com/package/@stakefish/ui"><img src="https://gateway.pinata.cloud/ipfs/QmbZL1ceA8Yiz2pKALTg919jYx141DPUGegC9L4XpyayW5" width="300" /></a> </div>

13 lines (12 loc) 462 B
import React, { ReactNode } from "react"; import { Theme } from "@mui/material/styles"; import { SxProps } from "@mui/system/styleFunctionSx"; export interface SwipeableMobileStepperProps { swipeableViewsProps?: { overflowXHidden?: boolean; sx?: SxProps<Theme>; }; children: ReactNode[] | JSX.Element[]; } declare const SwipeableMobileStepper: React.FC<SwipeableMobileStepperProps>; export default SwipeableMobileStepper;