tailwind-nextjs-blog/components/Tag.tsx

19 lines
419 B
TypeScript
Raw Normal View History

2022-10-17 23:37:01 +08:00
import Link from 'next/link';
import kebabCase from '@/lib/utils/kebabCase';
2022-07-17 21:40:41 +08:00
interface Props {
2022-10-17 23:37:01 +08:00
text: string;
}
const Tag = ({ text }: Props) => {
2022-07-17 21:40:41 +08:00
return (
<Link href={`/tags/${kebabCase(text)}`}>
<a className="mr-3 text-sm font-medium uppercase text-primary-500 hover:text-primary-600 dark:hover:text-primary-400">
{text.split(' ').join('-')}
</a>
</Link>
2022-10-17 23:37:01 +08:00
);
};
2022-07-17 21:40:41 +08:00
2022-10-17 23:37:01 +08:00
export default Tag;