'use client'; /** * This file was automatically generated by the Stencil React Output Target. * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. */ /* eslint-disable */ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime'; import { createComponent } from '@stencil/react-output-target/runtime'; import { AtriaButton as AtriaButtonElement, defineCustomElement as defineAtriaButton } from "@vyacobucci/button/dist/components/atria-button.js"; import React from 'react'; type AtriaButtonEvents = { onBtnClick: EventName> }; const AtriaButton: StencilReactComponent = /*@__PURE__*/ createComponent({ tagName: 'atria-button', elementClass: AtriaButtonElement, // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored. react: React, events: { onBtnClick: 'btnClick' } as AtriaButtonEvents, defineCustomElement: defineAtriaButton }); export default AtriaButton;