feat: 添加审计日志列表
Van Zheng authored at 2023-02-25 14:36:26
422.00 B
NewLife.CubeAntd
import React from 'react';
import { CheckOutlined, CloseOutlined } from '@ant-design/icons';

const IconStatus: React.FC<{ status: boolean }> = ({ status }) => {
  return status ? (
    <CheckOutlined
      style={{
        color: '#3bd27e',
        fontSize: 14,
      }}
    />
  ) : (
    <CloseOutlined
      style={{
        color: '#ff4d4f',
        fontSize: 14,
      }}
    />
  );
};

export default IconStatus;