chore(Button): ignore raw from LinkProps

This commit is contained in:
Benjamin Canac
2024-06-28 11:49:40 +02:00
parent a44abb738f
commit db45bafaed

View File

@@ -12,7 +12,7 @@ const button = tv({ extend: tv(theme), ...(appConfig.ui?.button || {}) })
type ButtonVariants = VariantProps<typeof button>
export interface ButtonProps extends UseComponentIconsProps, Omit<LinkProps, 'custom'> {
export interface ButtonProps extends UseComponentIconsProps, Omit<LinkProps, 'raw' | 'custom'> {
label?: string
color?: ButtonVariants['color']
variant?: ButtonVariants['variant']