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)

34 lines (33 loc) 643 B
/** * @file index.tsx * * @fileoverview User Avatar component. */ /// <reference types="react" /> export interface AvatarProps { /** * Alt text for the user image. */ alt: string; /** * Title for the user image. */ title: string; /** * Size of the image. */ size?: 'small' | 'medium'; /** * Src of the image. */ src?: string; /** * Status */ status?: 'active' | 'hidden' | 'inactive'; } /** * Display a user avatar image. */ export declare const Avatar: ({ status, size, title, src, ...props }: AvatarProps) => JSX.Element; export default Avatar;