Merged in chore/remove-unused-exports (pull request #3485)

chore: Fix exports

* Fix exports


Approved-by: Joakim Jäderberg
This commit is contained in:
Anton Gunnarsson
2026-01-26 13:36:43 +00:00
parent 3d02a5257a
commit 0ab93dc80e
3 changed files with 5 additions and 10 deletions

View File

@@ -1,10 +1,8 @@
import type { VariantProps } from "class-variance-authority"
import type { PropsWithChildren } from "react"
import type { BreadcrumbProps as BreadcrumbRACProps } from "react-aria-components"
import type { variants } from "./variants"
export type { Breadcrumb, BreadcrumbProps, BreadcrumbsProps }
export type { Breadcrumb, BreadcrumbsProps }
interface Breadcrumb {
title: string
@@ -15,8 +13,3 @@ interface Breadcrumb {
interface BreadcrumbsProps extends VariantProps<typeof variants> {
breadcrumbs: Breadcrumb[]
}
interface BreadcrumbProps extends PropsWithChildren<BreadcrumbRACProps> {
className?: string
href?: string
}