/** * ============================================ * TEXT LIST WITH DATA MODULE - ATOMIC DESIGN * ============================================ * * Componente de texto con indicador de color modular que sigue principios de: * - Screaming Architecture: La estructura de carpetas refleja el dominio * - Atomic Design: Atoms → Molecules → Organisms * - DRY: Reutilización de componentes y tipos * * ## Estructura * * ``` * TextListWithData/ * ├── components/ * │ ├── atoms/ # Componentes básicos * │ │ └── TextListIndicator * │ └── organisms/ # Componente completo * │ └── TextListWithData * ├── types/ * │ └── index.ts # Definición de tipos * ├── stories/ * │ └── textListWithData.stories.tsx * └── index.ts # Exports públicos * ``` * * ## Uso Básico * * @example * ```tsx * import { TextListWithData } from '@imjmedia/ui' * * * ``` */ export { TextListWithData } from './components'; export { TextListIndicator } from './components'; export type { TextListWithDataProps } from './types'; export type { TextListIndicatorProps } from './components'; //# sourceMappingURL=index.d.ts.map