1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/components/release-notes/PlainLink.tsx

16 lines
285 B
TypeScript

import type { ReactNode } from 'react'
type PlainLinkProps = {
href: string
children: ReactNode
className?: string
}
export function PlainLink({ href, className, children }: PlainLinkProps) {
return (
<a href={href} className={className}>
{children}
</a>
)
}