react-icons/fa#FaUserClock TypeScript Examples

The following examples show how to use react-icons/fa#FaUserClock. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.tsx    From interbtc-ui with Apache License 2.0 5 votes vote down vote up
StatusCell = ({ status }: Props): JSX.Element => {
  const { t } = useTranslation();

  // TODO: should double-check with the designer
  let icon;
  let notice;
  let colorClassName;
  switch (true) {
    case status.completed:
      icon = <FaRegCheckCircle />;
      notice = t('completed');
      colorClassName = 'text-interlayConifer';
      break;
    case status.cancelled:
      icon = <FaRegTimesCircle />;
      notice = t('cancelled');
      colorClassName = 'text-interlayCinnabar';
      break;
    case status.isExpired:
      icon = <FaUserClock />;
      notice = t('expired');
      colorClassName = 'text-interlayCinnabar';
      break;
    case status.reimbursed:
      icon = <FaClipboardCheck />;
      notice = t('reimbursed');
      colorClassName = 'text-interlayConifer';
      break;
    default:
      icon = <FaRegClock />;
      notice = t('pending');
      colorClassName = 'text-interlayCalifornia';
      break;
  }

  return (
    <div className={clsx('inline-flex', 'items-center', 'space-x-1.5', colorClassName)}>
      {icon}
      <span>{notice}</span>
    </div>
  );
}
Example #2
Source File: index.tsx    From polkabtc-ui with Apache License 2.0 5 votes vote down vote up
StatusCell = ({
  status
}: Props): JSX.Element => {
  const { t } = useTranslation();

  // TODO: should double-check with the designer
  let icon;
  let notice;
  let colorClassName;
  switch (true) {
  case status.completed:
    icon = <FaRegCheckCircle />;
    notice = t('completed');
    colorClassName = 'text-interlayMalachite';
    break;
  case status.cancelled:
    icon = <FaRegTimesCircle />;
    notice = t('cancelled');
    colorClassName = 'text-interlayScarlet';
    break;
  case status.isExpired:
    icon = <FaUserClock />;
    notice = t('expired');
    colorClassName = 'text-interlayScarlet';
    break;
  case status.reimbursed:
    icon = <FaClipboardCheck />;
    notice = t('reimbursed');
    colorClassName = 'text-interlayMalachite';
    break;
  default:
    icon = <FaRegClock />;
    notice = t('pending');
    colorClassName = 'text-interlayTreePoppy';
    break;
  }

  return (
    <div
      className={clsx(
        'flex',
        'items-center',
        'space-x-1.5',
        colorClassName
      )}>
      {icon}
      <span>
        {notice}
      </span>
    </div>
  );
}