@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
42 lines (41 loc) • 1.6 kB
TypeScript
import React, { ReactNode, SyntheticEvent } from 'react';
import '@vonage/vwc-list';
import '@vonage/vwc-list/vwc-radio-list-item';
/** This component is an extension of [<mwc-radio-list-item>](https://github.com/material-components/material-components-web-components/tree/master/packages/list)
* @param {boolean} left
* @param {string} value
* @param {string | null} group
* @param {number} tabindex
* @param {boolean} disabled
* @param {boolean} twoline
* @param {boolean} activated
* @param {GraphicType} graphic
* @param {boolean} multipleGraphics
* @param {boolean} hasMeta
* @param {boolean} noninteractive
* @param {boolean} selected
* @param {string} text
*/
declare const VwcRadioListItem: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
onRequestSelected?: ((event: SyntheticEvent) => void) | undefined;
onListItemRendered?: ((event: SyntheticEvent) => void) | undefined;
left?: boolean | undefined;
value?: string | undefined;
group?: string | null | undefined;
tabindex?: number | undefined;
disabled?: boolean | undefined;
twoline?: boolean | undefined;
activated?: boolean | undefined;
graphic?: any;
multipleGraphics?: boolean | undefined;
hasMeta?: boolean | undefined;
noninteractive?: boolean | undefined;
selected?: boolean | undefined;
text?: string | undefined;
}) => JSX.Element;
export default VwcRadioListItem;