Skip to content

Commit

Permalink
fixed button import error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayodejioladimeji committed Jul 24, 2024
1 parent 0833af0 commit f91d699
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/layouts/careercard/CareerCard.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { FC } from "react";
import { Button } from "~/components/ui/button";

import { Card, CardContent, CardFooter } from "~/components/ui/card";
import { Skeleton } from "~/components/ui/skeleton";
import CustomButton from "../Button/button";


interface CareerCardProperties {
isLoading: boolean;
Expand Down Expand Up @@ -54,7 +55,7 @@ const CareerCard: FC<CareerCardProperties> = ({
{amount}
<span className="font-normal">/month</span>
</span>
<CustomButton variant="primary">View Details</CustomButton>
<Button variant="primary">View Details</Button>
</>
)}
</CardFooter>
Expand Down

0 comments on commit f91d699

Please sign in to comment.