import { Typography } from '../Typography' import styles from './chip-link.module.css' import type { PropsWithChildren } from 'react' export function ChipLink({ children, className, ...props }: PropsWithChildren>) { return ( {children} ) }