import React from 'react'; import Scribble from '@/components/Scribble'; interface HighlightBoxProps { title?: string; children: React.ReactNode; color?: 'primary' | 'secondary' | 'accent'; } const colorStyles = { primary: 'bg-gradient-to-br from-primary/5 to-transparent border-primary/20', secondary: 'bg-gradient-to-br from-blue-50/50 to-transparent border-blue-200/50', accent: 'bg-gradient-to-br from-accent/5 to-transparent border-accent/20', }; export default function HighlightBox({ title, children, color = 'primary' }: HighlightBoxProps) { return (
{/* Industrial accent corner */}
{title && (

{title} {color === 'accent' && ( )}

)}
{children}
); }