chore: upgrade dependencies (#1906)

* upgrade dependencies

* downgrade fast-average-color
This commit is contained in:
Kendall Garner
2026-04-05 00:10:57 +00:00
committed by GitHub
parent 132ac92984
commit a32fed3bcf
30 changed files with 2598 additions and 2504 deletions
+1 -2
View File
@@ -62,8 +62,7 @@ const PillGroup = ({ children, classNames, gap = 'sm', ...props }: PillGroupProp
Pill.Group = PillGroup;
interface PillLinkProps
extends Omit<React.ComponentPropsWithoutRef<typeof Link>, keyof PillProps>,
PillProps {}
extends Omit<React.ComponentPropsWithoutRef<typeof Link>, keyof PillProps>, PillProps {}
export const PillLink = forwardRef<HTMLDivElement, PillLinkProps>(({ children, ...props }, ref) => {
const { classNames, radius = 'md', size = 'md', ...rest } = props;