Quest for Codev2.0.0
/
SIGN IN
next.js/test/development/acceptance-app/fixtures/app-hmr-changes/app/(post)/components/blockquote.tsx
blockquote.tsx10 lines264 B
import type { ReactNode } from 'react'

export function Blockquote({ children }: { children: ReactNode }) {
  return (
    <blockquote className="my-5 text-gray-500 pl-3 border-l-4 dark:border-gray-600 dark:text-gray-400">
      {children}
    </blockquote>
  )
}