UNPKG

387 BJavaScriptView Raw
1import React from "react";
2import { CheckCircleFilled, CloseCircleFilled } from "@ant-design/icons";
3
4export default function SendStatus({ value }) {
5 if (value) {
6 return (
7 <span style={{ color: "#07c420" }}>
8 <CheckCircleFilled /> 成功
9 </span>
10 );
11 }
12 return (
13 <span style={{ color: "#ff0000" }}>
14 <CloseCircleFilled /> 失败
15 </span>
16 );
17}