import { ButtonHTMLAttributes, forwardRef } from 'react'; import classnames from 'classnames'; import { Icon } from './Icon'; export type ButtonProps = ButtonHTMLAttributes & { color?: 'primary' | 'secondary'; size?: 'sm' | 'md'; justify?: 'start' | 'center'; forDropdown?: boolean; }; export const Button = forwardRef(function Button( { className, justify = 'center', children, size = 'md', forDropdown, color, ...props }: ButtonProps, ref, ) { return ( ); });