import { motion } from "framer-motion"; import { Badge } from "@/components/ui/badge"; interface SkillBadgeProps { name: string; icon?: string; color?: string; delay?: number; } export const SkillBadge = ({ name, icon, color = "default", delay = 0 }: SkillBadgeProps) => { return ( {icon && {icon}} {name} ); };