import { cn } from '../../../utils' import { typographyVariants } from '../../Typography' import { type FooterItem } from '../config' type Props = { item: FooterItem } export function Item({ item }: Props) { return (
  • {item.Icon && } {item.label}
  • ) }