react-bootstrap: Add bsClass to Glyphicon

See https://react-bootstrap.github.io/components.html#glyphicons-props
This commit is contained in:
Erik Dalén
2017-11-06 17:14:00 +01:00
committed by Erik Dalén
parent a68863ebbd
commit c68ec62d1a
+2
View File
@@ -4,6 +4,8 @@ declare namespace Glyphicon {
export interface GlyphiconProps extends React.HTMLProps<Glyphicon> {
// Required
glyph: string;
// Optional
bsClass?: string;
}
}
declare class Glyphicon extends React.Component<Glyphicon.GlyphiconProps> { }