Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

140
Vistas
Use prop as style index with typescript

I am currently building a component which has props and want to use the prop as an index for styles but i get a typescript error:

Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{ success: { color: string; }; warning: { color: string; }; error: { color: string; }; }'. No index signature with a parameter of type 'string' was found on type '{ success: { color: string; }; warning: { color: string; }; error: { color: string; }; }'.ts(7053)

import React from 'react'
import { StyleSheet, Text, View } from 'react-native'

type InfoBoxProps = {
  text: string
  context: string
}

const InfoBox: React.FC<InfoBoxProps> = ({ text, context }) => {
  return (
    <View>
      <Text style={styles[context]}>{text}</Text>
    </View>
  )
}

const styles = StyleSheet.create({
  success: {
    color: 'green'
  },
  warning: {
    color: 'yellow'
  },
  error: {
    color: 'red'
  }
})

export default InfoBox
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Try defining context as:

type InfoBoxProps = {
  text: string
  context: keyof typeof styles
}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda