Skip to content

Commit

Permalink
Merge pull request #44 from nethmalds/main
Browse files Browse the repository at this point in the history
refactor: reconfig linting errors
  • Loading branch information
nethmalds authored Sep 27, 2024
2 parents 3ed584b + a9bd9f6 commit 126bfb1
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/components/ui/TimelineTextContent.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { BsCalendarDateFill } from "react-icons/bs";

interface TimelineTextContentProps {
title: string;
description: string;
Expand All @@ -9,7 +7,7 @@ interface TimelineTextContentProps {
const TimelineTextContent = ({
title,
description,
date
date,
}: TimelineTextContentProps) => {
return (
<div className="w-full h-full rounded-md px-5 md:pl-4 md:pb-4">
Expand All @@ -18,9 +16,7 @@ const TimelineTextContent = ({
</h1>
<div className="flex items-center py-2 md:hidden ">
{/* <BsCalendarDateFill className="text-gray-100 text-lg" /> */}
<p className="text-gray-100 text-lg sm:text-md">
{date}
</p>
<p className="text-gray-100 text-lg sm:text-md">{date}</p>
</div>
<p className="text-gray-100 text-lg sm:text-xl pb-5 md:w-[80%] w-[100%] md:mt-1">
{description}
Expand Down

0 comments on commit 126bfb1

Please sign in to comment.