import classNames from 'classnames'; import { type ButtonHTMLAttributes } from 'react'; type RainbowButtonProps = { variant?: 'full' | 'border'; }; export const RainbowButton = ({ variant = 'full', children, className, ...props }: RainbowButtonProps & ButtonHTMLAttributes) => ( );