Untitled

 avatar
unknown
plain_text
a year ago
1.6 kB
6
Indexable
const TIMELINE_ICON: { [key: string]: React.JSX.Element } = {
  SCREENING_PURCHASED: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  REPORT_PUBLISHED: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  SCREENING_STARTED: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  CANDIDATE_EMAIL_SENT: (
    <EnvelopeIcon
      className="h-8 w-8 stroke-1 text-gray-400"
      aria-hidden="true"
    />
  ),
  EMPLOYMENT_ACTIVITY: (
    <EnvelopeIcon
      className="h-8 w-8 stroke-1 text-gray-400"
      aria-hidden="true"
    />
  ),
  CONSENT_GIVEN: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  DBS_VERIFICATION: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  CANDIDATE_SURVEY_SUBMITTED: (
    <CheckCircleIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  CANDIDATE_SURVEY: (
    <ClipboardIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  RIGHT_TO_WORK: (
    <ClipboardIcon
      className="text-sssgreen h-8 w-8 stroke-1"
      aria-hidden="true"
    />
  ),
  REFERENCE_UPDATED: (
    <PencilIcon className="text-sssgreen h-8 w-8 stroke-1" aria-hidden="true" />
  ),
  SCREENING_STATUS_AMENDED: (
    <PencilIcon className="text-sssgreen h-8 w-8 stroke-1" aria-hidden="true" />
  ),
}
Editor is loading...
Leave a Comment