Create reusable tag component

This commit is contained in:
RadoslavDimchev 2023-07-21 16:25:53 +03:00
parent b755be0846
commit f3859b911b
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import { Paragraph } from "tamagui";
const Tag = ({ bc, text }) => {
return (
<div
style={{
backgroundColor: bc,
display: "flex",
padding: "0px 8px",
alignItems: "center",
borderRadius: "67px",
}}
>
<Paragraph fontWeight={"500"} fontSize={"10px"}>
{text}
</Paragraph>
</div>
);
};
export { Tag };

View File

@ -0,0 +1 @@
export { Tag } from "./Tag";