import type { ComponentMetadata } from '../interfaces/types';

export const metadata: ComponentMetadata = {
  component_name: 'TestPadre',
  category: 'Contenido de Texto',
  name: 'TestPadre',
  description: 'TestPadre',
  framework: 'Astro',
  priority: 1,
  tags: ['texto'],
   fields: [
    {
      name: 'texto',
      type: 'text',
      help: 'Texto libre',
      label: 'Texto',
      mandatory: false,
      example_value: 'Prueba de texto'
    }
  ]
};
