fix: export BadgeVariant type from Badge public API

This commit is contained in:
Ilia Mashkov
2026-04-18 15:54:45 +03:00
parent bb9c91b4f8
commit f95588381d
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1 +1,2 @@
export { Badge } from './ui/Badge' export { Badge } from './ui/Badge'
export type { BadgeVariant } from './ui/Badge'
+1 -1
View File
@@ -1,7 +1,7 @@
import type { ReactNode } from 'react' import type { ReactNode } from 'react'
import { cn } from '$shared/lib' import { cn } from '$shared/lib'
type BadgeVariant = 'default' | 'primary' | 'secondary' | 'outline' export type BadgeVariant = 'default' | 'primary' | 'secondary' | 'outline'
interface Props { interface Props {
/** /**