Callout.tsx 196 B

12345678
  1. export default function Callout({ children, title = 'Important' }) {
  2. return (
  3. <div className="callout">
  4. <div className="callout-title">{title}</div>
  5. {children}
  6. </div>
  7. );
  8. }