import type { RuleCardViewProps } from "./RuleCard.types"; export function RuleCardView({ title, description, icon, backgroundColor, className, onClick, onKeyDown, }: RuleCardViewProps) { return (
{/* Header Container */}
{/* Icon Container */} {icon && (
{icon}
)} {/* Title Container */} {title && (

{title}

)}
{description && (

{description}

)}
); }