import { Button as ButtonRAC } from 'react-aria-components' import { Typography } from '../Typography' import styles from './chip-button.module.css' import type { ComponentPropsWithRef } from 'react' export function ChipButton({ children, className, ...props }: ComponentPropsWithRef) { return ( {children} ) }