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)

37 lines (36 loc) 889 B
import React from 'react'; export interface PersonalInfoProps { /** * The personal information of the user. */ personalInfo: PersonalInfo; /** * Item to render for clicking this field. */ OnClickElement?: React.ReactNode; } export interface PersonalInfo { /** * The url to the photo of the applicant. * * @default A placeholder image. */ photo?: string; /** * The combination of first & last name. */ fullname?: string; /** * The home location of the applicant. */ home?: string; /** * Resume status. */ status?: 'active' | 'hidden' | 'inactive'; } /** * Shows an applicant's personal information. Used to display on a resume page. */ export declare const PersonalInfo: ({ personalInfo, OnClickElement }: PersonalInfoProps) => JSX.Element; export default PersonalInfo;