Quest for Codev2.0.0
/
SIGN IN
next.js/test/development/acceptance-app/fixtures/app-hmr-changes/app/(post)/components/callout.tsx
callout.tsx7 lines285 B
export const Callout = ({ emoji = null, text }) => (
  <div className="bg-gray-200 dark:bg-[#333] dark:text-gray-300 flex items-start p-3 my-6 text-base">
    <span className="block w-6 text-center text-xl mr-2">{emoji}</span>
    <span className="block grow">{text}</span>
  </div>
)