import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import type { IconDefinition } from '@fortawesome/free-solid-svg-icons'; import { ReactNode } from 'react'; import clsx from 'clsx'; interface MetaItemProps { icon: IconDefinition; children: ReactNode; className?: string; tone?: 'default' | 'muted'; } export function MetaItem({ icon, children, className, tone = 'default' }: MetaItemProps) { return ( {children} ); }