import classNames from 'classnames'; import type { HTMLAttributes } from 'react'; import { BORDER_COLOR, GRADIENT } from './constants'; type TileProps = { variant?: 'rainbow' | 'default'; }; export const Tile = ({ variant = 'default', className, children, }: TileProps & HTMLAttributes) => { return (
{children}
); };