From c68ec62d1a173bdd448505cb2964f7fd90284efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Dal=C3=A9n?= Date: Mon, 6 Nov 2017 17:11:04 +0100 Subject: [PATCH] react-bootstrap: Add bsClass to Glyphicon See https://react-bootstrap.github.io/components.html#glyphicons-props --- types/react-bootstrap/lib/Glyphicon.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-bootstrap/lib/Glyphicon.d.ts b/types/react-bootstrap/lib/Glyphicon.d.ts index 036af24cb3..17cf8e9fc7 100644 --- a/types/react-bootstrap/lib/Glyphicon.d.ts +++ b/types/react-bootstrap/lib/Glyphicon.d.ts @@ -4,6 +4,8 @@ declare namespace Glyphicon { export interface GlyphiconProps extends React.HTMLProps { // Required glyph: string; + // Optional + bsClass?: string; } } declare class Glyphicon extends React.Component { }