UNPKG
@kalamazoo/profilecard
Version:
latest (1.0.2)
1.0.2
1.0.0
A React component to display a card with user information.
bitbucket.org/atlassian/atlaskit-mk-2
@kalamazoo/profilecard
/
dist
/
cjs
/
components
/
IconLabel.d.ts
13 lines
(12 loc)
•
279 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
*
as
React
from
'react'
;
declare
type
Props
= {
icon
:
string
;
children
?:
React
.
ReactNode
; };
export
default
class
IconLabel
extends
React.PureComponent
<
Props
> {
static
defaultProps
: {
icon
:
string
; };
render
():
JSX
.
Element
|
null
; }
export
{};