import { defineComponent } from 'vue'; import './Select.scss'; /** * A select input in the schlechtenburg theme * @sbui */ export const SbSelect = defineComponent({ name: 'sb-select', inheritAttrs: false, setup(_, context) { return () => (
); }, });