import clsx from 'clsx' import { type PropsWithChildren } from 'react' import { type SelectColor } from '@/lib/notion/types' export default function Tag({ notionColorName, children, }: PropsWithChildren<{ notionColorName?: SelectColor }>) { return ( {children} ) }