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

251
Vistas
How to change text color in a Button?

I was wondering if it is possible to change the color of the text in Antd. For instance, I'd like this button to have the color of the text black#000000 and the icon DownloadOutlined in purple #5e46a1

My code

const App = () => {
  return (
      <Button type="primary">
        <DownloadOutlined/>
        My Button
      </Button>
  );
};

Have not been able to find the correct CSS attributes to inject in style inside DownloadOutlined

Thanks

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

const App = () => {
  return (
    <Button>
      <DownloadOutlined style={{color:"purple"}}/>
      <span style={{ color: "black" }}>My Button</span>
    </Button>
  );
};
about 4 years ago · Juan Pablo Isaza Denunciar

0

Your html code would become:

const App = () => {
  return (
      <Button type="primary" className="custom_btn">
        <DownloadOutlined className="custom_btn_icon"/>
        My Button
      </Button>
  );
};

and your css code would be:

.custom_btn {
  color: #00000 !important; 
}
.custom_btn_icon {
  color: #5e46a1 !important; 
}

Don't forget to use !important to override default antd's styling.

about 4 years ago · Juan Pablo Isaza Denunciar

0

Try this:

const App = () => {
  return (
      <Button type="primary" style={{color: "black"}}>
        <DownloadOutlined style={{color: "purple"}} />
        My Button
      </Button>
  );
};
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