🔧 chore: extend to buttonOrLinkProps

This commit is contained in:
Andre H 2024-02-22 15:03:21 +07:00
parent 5be29a9745
commit 4d646e1ac0

View File

@ -10,12 +10,12 @@ import {
InfoRoundFilledIcon,
WarningIcon,
} from 'components/shared/CustomIcon';
import { Button, ButtonBaseProps, ButtonTheme } from 'components/shared/Button';
import { Button, type ButtonOrLinkProps } from 'components/shared/Button';
import { cloneIcon } from 'utils/cloneIcon';
interface CtaProps extends ButtonBaseProps, ButtonTheme {
type CtaProps = ButtonOrLinkProps & {
buttonLabel: string;
}
};
export interface SimpleToastProps extends ToastProps {
id: string;
title: string;