import { defineComponent } from 'vue'; import './Button.scss'; export const SbButton = defineComponent({ name: 'sb-button', inheritAttrs: false, setup(_, context) { return () => ( ); }, });