@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
19 lines (18 loc) • 764 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-action-group';
/** Represents an action-group custom element.
* @param {ActionGroupShape | undefined} shape attribute: <VwcActionGroup shape />
* @param {ActionGroupLayout | undefined} layout attribute: <VwcActionGroup layout />
* @param {boolean} tight attribute: <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;