@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
15 lines (13 loc) • 461 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-carousel';
import '@vonage/vwc-carousel/vwc-carousel-item';
/**
*/
declare const VwcCarouselItem: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
}) => JSX.Element;
export default VwcCarouselItem;