UNPKG

@vonage/vivid-react

Version:

Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings

26 lines (25 loc) 883 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-calendar'; import '@vonage/vwc-calendar/vwc-calendar-event'; /** * @param {string | undefined} heading * @param {string | undefined} description * @param {string | undefined} color * @param {string | undefined} overlapCount * @param {number} start * @param {number} duration */ declare const VwcCalendarEvent: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; heading?: string | undefined; description?: string | undefined; color?: string | undefined; overlapCount?: string | undefined; start?: number | undefined; duration?: number | undefined; }) => JSX.Element; export default VwcCalendarEvent;