Merge pull request #7077 from J-Michalek/patch-1

feat(button): add to prop type
pull/7007/merge
Tuğçe Küçükoğlu 2025-01-14 09:15:45 +03:00 committed by GitHub
commit 13e391fee9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -207,6 +207,10 @@ export interface ButtonProps extends ButtonHTMLAttributes {
* @defaultValue false * @defaultValue false
*/ */
unstyled?: boolean; unstyled?: boolean;
/**
* Route Location the router-link should navigate to when clicked on.
*/
to?: string
} }
/** /**