UNPKG

@kalamazoo/profilecard

Version:

A React component to display a card with user information.

13 lines (12 loc) 279 B
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 {};