Step 步骤条
import { Step } from "@finalx/components";
interface IProps {}
export const Index: FC<IProps> = () => {
return (
<Step
activeColor='red'
slotColor='#000000'
proportion={80}
items={[
{
title: "第一天",
desc: "这是第一天的描述",
process: 30
},
{
title: "第二天",
desc: "这是第二天的描述",
process: 60
},
{
title: "第三天",
desc: "这是第三天的描述",
process: 100
}
]}
pop={{ title: "目前进度在80%", onClick: () => console.log("浮窗被点击了") }}
/>
);
};