UNPKG

@vonage/vivid-react

Version:

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

29 lines (28 loc) 1.39 kB
import React, { ReactNode } from 'react'; /** VwcActionGroup * For more info on this Vivid element please visit https://vivid.deno.dev/components/action-group * @param {ActionGroupShape | undefined} shape - The shape the ActionGroup should have. **attribute** `shape` * @param {ActionGroupAppearance | undefined} appearance - The appearance the ActionGroup should have. **attribute** `appearance` * @param {boolean} tight - Indicates whether action group should have padding. **attribute** `tight` * @param {'delegate'} _vividAriaBehaviour * @param {string} VIVID_VERSION - The current version of the Vivid library, which is useful for debugging. It can be accessed from any Vivid element via `<el>.constructor.VIVID_VERSION`. * @param {string} componentName - Core component name, without prefix */ 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; appearance?: any; tight?: boolean | undefined; _vividAriaBehaviour?: any; VIVID_VERSION?: string | undefined; componentName?: string | undefined; }): JSX.Element; displayName: string; }; export default VwcActionGroup;