UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

25 lines (24 loc) 792 B
/// <reference types="react" /> export declare const StyledUserName: import("styled-components").StyledComponent<"div", any, any, never>; export declare const StyledUserEmail: import("styled-components").StyledComponent<"div", any, any, never>; export interface AvatarProps { /** * The user's picture. */ picture?: string; /** * The user's name. */ name: string; /** * The user's email. */ email: string; } /** * The teaser for a user. It can be used to display a * small set of information about a user on the user detail page or * any other part where its relevant to show small snippets of user information. */ export declare const AvatarTeaser: ({ picture, name, email }: AvatarProps) => JSX.Element; export default AvatarTeaser;