import React from 'react'; import classnames from 'classnames'; import { ButtonBase, IconSize } from '..'; import { BackgroundColor, Color, } from '../../../helpers/constants/design-system'; import type { PolymorphicRef } from '../box'; import type { ButtonBaseProps } from '../button-base'; import type { ButtonLinkProps } from './button-link.types'; import { ButtonLinkSize, ButtonLinkComponent } from './button-link.types'; export const ButtonLink: ButtonLinkComponent = React.forwardRef( ( { className = '', color, danger = false, disabled = false, loading = false, size = ButtonLinkSize.Auto, ...props }: ButtonLinkProps, ref?: PolymorphicRef, ) => { return ( ) }} /> ); }, );