10 lines
346 B
TypeScript
10 lines
346 B
TypeScript
import type { ButtonPropsSlot } from "@/components/TempDesignSystem/Button/button"
|
|
|
|
export type ButtonLinkProps = React.PropsWithChildren &
|
|
Omit<ButtonPropsSlot, "asChild"> &
|
|
Pick<React.AnchorHTMLAttributes<HTMLAnchorElement>, "onClick" | "target"> & {
|
|
href: string
|
|
trackingId?: string
|
|
trackingParams?: Record<string, string>
|
|
}
|