UNPKG

444 BTypeScriptView Raw
1import * as React from 'react';
2export interface BadgeProps extends React.HTMLProps<HTMLSpanElement> {
3 /** Adds styling to the badge to indicate it has been read */
4 isRead?: boolean;
5 /** content rendered inside the Badge */
6 children?: React.ReactNode;
7 /** additional classes added to the Badge */
8 className?: string;
9}
10export declare const Badge: React.FunctionComponent<BadgeProps>;
11//# sourceMappingURL=Badge.d.ts.map
\No newline at end of file