import { iconVariants } from '../../variants' import type { IconProps } from '../../icon' import { getIconAriaProps } from '../../utils' export default function CouchTableIcon({ className, color, size = 24, ...props }: IconProps) { const classNames = iconVariants({ className, color }) const ariaProps = getIconAriaProps(props) return ( ) }