jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
37 lines (36 loc) • 889 B
TypeScript
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;