import React from 'react'; import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; interface ModalIconProps { icon: LucideIcon; color?: string; bgColor?: string; borderColor?: string; } export function ModalIcon({ icon, color = 'text-primary-blue', bgColor = 'bg-primary-blue/10', borderColor = 'border-primary-blue/20', }: ModalIconProps) { return ( ); }