bcche-ui-react
Version:
A component library that can achieve magic effects
15 lines (14 loc) • 442 B
TypeScript
import React from 'react';
import type { SwiperProps } from '../types';
import './CornerSwiper.less';
interface CornerSwiperProps extends SwiperProps {
defaultMargin?: boolean;
rotateX?: string;
rotateY?: string;
position?: number;
perspective?: string;
perspectiveOriginX?: string;
perspectiveOriginY?: string;
}
declare const CornerSwiper: React.FC<CornerSwiperProps>;
export default CornerSwiper;