@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
18 lines (17 loc) • 830 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-notched-outline';
/** This component is an extension of [<mwc-notched-outline>](https://github.com/material-components/material-components-web-components/tree/master/packages/notched-outline)
This component is NOT meant to be used itself, but serves as an adjustment/definition for the usage of it in other components
* @param {number} width
* @param {boolean} open
*/
declare const VwcNotchedOutline: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
width?: number | undefined;
open?: boolean | undefined;
}) => JSX.Element;
export default VwcNotchedOutline;