UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

14 lines (13 loc) 301 B
import React from 'react'; type Props = { icon: string; children?: React.ReactNode; extraTopSpace?: boolean; }; export default class IconLabel extends React.PureComponent<Props> { static defaultProps: { icon: string; }; render(): React.JSX.Element | null; } export {};