UNPKG

@vonage/vivid-react

Version:

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

19 lines (18 loc) 764 B
import React, { ReactNode } from 'react'; import '@vonage/vwc-action-group'; /** Represents an action-group custom element. * @param {ActionGroupShape | undefined} shape attribute: &lt;VwcActionGroup shape /> * @param {ActionGroupLayout | undefined} layout attribute: &lt;VwcActionGroup layout /> * @param {boolean} tight attribute: &lt;VwcActionGroup tight /> */ declare const VwcActionGroup: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined; shape?: any; layout?: any; tight?: boolean | undefined; }) => JSX.Element; export default VwcActionGroup;