computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
250 B
13 lines
250 B
12 months ago
|
type SectionBadgeProps = {
|
||
|
title: string;
|
||
|
};
|
||
|
export function SectionBadge(props: SectionBadgeProps) {
|
||
|
const { title } = props;
|
||
|
|
||
|
return (
|
||
|
<span className="rounded-full bg-black px-3 py-1 text-sm text-white">
|
||
|
{title}
|
||
|
</span>
|
||
|
);
|
||
|
}
|