Skip to content

Commit

Permalink
feat: Create OnboardingButton component
Browse files Browse the repository at this point in the history
  • Loading branch information
eryc-cc committed Jul 18, 2022
1 parent 6ba3118 commit 5056f6d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions components/molecules/OnboardingButton/onboarding-button.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import Text from "components/atoms/Typography/text";
import ProgressPie from "components/atoms/ProgressPie/progress-pie";

const OnboardingButton: React.FC = () => {
return (
<button className="flex items-center gap-2 border border-slate-200 py-1 px-1 pr-3 rounded-lg">
<ProgressPie percentage={30} />
<Text className="text-sm font-semibold ">
Complete the onboarding
</Text>
</button>
);
};

export default OnboardingButton;

0 comments on commit 5056f6d

Please sign in to comment.