@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
71 lines (61 loc) • 1.2 kB
JavaScript
/*
* DO NOT EDIT THIS FILE. IT IS GENERATED
*/
/*
Code in this file were generated using following JSON:
{
"name": "vwc-formfield",
"path": "./../node_modules/@vonage/vwc-formfield/src/vwc-formfield.ts",
"properties": [
{
"name": "styles",
"type": "CSSResult[]"
},
{
"name": "alignEnd",
"type": "boolean",
"bindable": false
},
{
"name": "spaceBetween",
"type": "boolean",
"bindable": false
},
{
"name": "nowrap",
"type": "boolean",
"bindable": false
},
{
"name": "label",
"type": "string",
"bindable": false
}
],
"events": []
}
*/
import PropTypes from 'prop-types'
import wrapper from '@vonage/vivid-react-wrapper'
import '@vonage/vwc-formfield'
/**
* @param {boolean} alignEnd
* @param {boolean} spaceBetween
* @param {boolean} nowrap
* @param {string} label
*/
const VwcFormfield = wrapper('vwc-formfield', {
events: [],
attributes: [],
properties: []
});
VwcFormfield.propTypes = {
alignEnd: PropTypes.bool,
spaceBetween: PropTypes.bool,
nowrap: PropTypes.bool,
label: PropTypes.string
}
VwcFormfield.defaultProps = {
}
VwcFormfield.displayName = 'VwcFormfield'
export default VwcFormfield