system-copyright-react/src/components/card/CardProjLoading.tsx

15 lines
578 B
TypeScript
Raw Normal View History

2024-03-15 18:18:29 +08:00
import './card-proj-loading.css';
import {Loading3QuartersOutlined} from '@ant-design/icons';
import {IProjLoading} from "../../interfaces/card/ICardProj.ts";
export default function CardProjLoading(props:IProjLoading) {
return (
<div className="card-proj-loading">
<div className="title">
<Loading3QuartersOutlined spin={true} style={{color: '#0052d9'}}/>
<span className="label">{props.title}</span>
</div>
<div className="desc">600s</div>
</div>
)
}