import type { FormTheme } from '../Form.vue'

const theme: FormTheme = {
  classes: {
    wrapper: 'relative',

    content: '',

    title: 'text-xl mb-1',

    description: 'text-secondary-500',

    footer: 'space-x-4 mt-4',
  },
}

export default theme
