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

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

    content: 'grid',

    title: 'text-xl mb-1',

    description: 'text-secondary-500',

    footer: 'grid grid-cols-2 gap-4 lg:flex mt-8',
  },
}

export default theme
