This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
1ab133c
commit c458cdc
Showing
44 changed files
with
585 additions
and
1,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from "react"; | ||
|
||
interface Props { | ||
name: string; | ||
position: string; | ||
} | ||
const Label = ({ name, position }: Props) => { | ||
return ( | ||
<div className="pt-5 flex flex-col w-full absolute left-0 bottom-0 bg-gradient-to-b from-main-black-extraLight via-main-black-400 to-main-black-dark"> | ||
<span className="text-main-teal font-miligramTextBold text-[0.9rem] leading-none"> | ||
{name} | ||
</span> | ||
<span className="text-white font-miligramText400 text-[0.8rem] leading-none"> | ||
{position} | ||
</span> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Label; |
Oops, something went wrong.