import React, { forwardRef, type Ref } from 'react' import { GenericButton, type ButtonRef, type GenericButtonProps } from '../GenericButton' export type ButtonProps = GenericButtonProps /** * @deprecated This component will be replaced by the next Button component in v2. * Use `@kaizen/components/next` Button instead. * Migration guide: {@link https://cultureamp.design/?path=/docs/components-button-migration-guide--docs} * Codemod available: `upgradeV1Buttons` * * {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3062890984/Button Guidance} | * {@link https://cultureamp.design/?path=/docs/components-buttons-button--docs Storybook} */ export const Button = forwardRef((props: ButtonProps, ref: Ref) => ( )) Button.displayName = 'Button'