Chloe a356148ed3
feat: add why choose us section
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-06-05 11:33:44 +07:00

8 lines
186 B
TypeScript

const Tag = ({ text }: { text: string }) => {
return (
<div className="w-fit border-l-4 border-l-primary bg-gray-100 px-2 py-0.5 text-sm">{text}</div>
);
};
export default Tag;