mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-26 20:36:36 +00:00
add first version of tailwind docs
This commit is contained in:
10
src/components/Prose.jsx
Normal file
10
src/components/Prose.jsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import clsx from 'clsx'
|
||||
|
||||
export function Prose({ as: Component = 'div', className, ...props }) {
|
||||
return (
|
||||
<Component
|
||||
className={clsx(className, 'prose dark:prose-invert')}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user