UNPKG

@vonage/vivid-react

Version:

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

59 lines (49 loc) 1.59 kB
/* * DO NOT EDIT THIS FILE. IT IS GENERATED */ /* Code in this file were generated using following JSON: { "name": "vwc-notched-outline", "path": "./../node_modules/@vonage/vwc-notched-outline/src/vwc-notched-outline.ts", "description": "This component is an extension of [<mwc-notched-outline>](https://github.com/material-components/material-components-web-components/tree/master/packages/notched-outline)\nThis component is NOT meant to be used itself, but serves as an adjustment/definition for the usage of it in other components", "properties": [ { "name": "styles", "type": "CSSResult[]" }, { "name": "width", "type": "number", "bindable": false }, { "name": "open", "type": "boolean", "bindable": false } ], "events": [] } */ import PropTypes from 'prop-types' import wrapper from '@vonage/vivid-react-wrapper' 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 */ const VwcNotchedOutline = wrapper('vwc-notched-outline', { events: [], attributes: [], properties: [] }); VwcNotchedOutline.propTypes = { width: PropTypes.number, open: PropTypes.bool } VwcNotchedOutline.defaultProps = { } VwcNotchedOutline.displayName = 'VwcNotchedOutline' export default VwcNotchedOutline