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