import React from 'react'; import classnames from 'classnames'; import { ButtonBase } from '../button-base'; import { BackgroundColor, IconColor, TextColor, } from '../../../helpers/constants/design-system'; import type { PolymorphicRef } from '../box'; import type { ButtonBaseProps } from '../button-base'; import type { ButtonPrimaryProps } from './button-primary.types'; import { ButtonPrimarySize, ButtonPrimaryComponent, } from './button-primary.types'; export const ButtonPrimary: ButtonPrimaryComponent = React.forwardRef( ( { className = '', danger = false, disabled = false, size = ButtonPrimarySize.Md, ...props }: ButtonPrimaryProps, ref?: PolymorphicRef, ) => { return ( ) }} /> ); }, );