import type { Icon, IconDefinition } from "@fortawesome/fontawesome-svg-core"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; type BadgeProps = { icon?: Icon | IconDefinition; text: string; }; const Badge = ({ icon, text }: BadgeProps) => { return ( {icon && } {text} ); }; export default Badge;