@service_laboratory/ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui.d.ts +20 -0
- package/dist/ui.js +5035 -0
- package/dist/ui.umd.cjs +86 -0
- package/package.json +41 -0
package/dist/ui.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
2
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
3
|
+
import { ClassValue } from 'clsx';
|
|
4
|
+
import { JSX } from 'react/jsx-runtime';
|
|
5
|
+
import * as React_2 from 'react';
|
|
6
|
+
import { VariantProps } from 'class-variance-authority';
|
|
7
|
+
|
|
8
|
+
export declare function Avatar({ className, ...props }: React_2.ComponentProps<typeof AvatarPrimitive.Root>): JSX.Element;
|
|
9
|
+
|
|
10
|
+
export declare function Badge({ className, variant, asChild, ...props }: React_2.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
11
|
+
asChild?: boolean;
|
|
12
|
+
}): JSX.Element;
|
|
13
|
+
|
|
14
|
+
export declare const badgeVariants: (props?: ({
|
|
15
|
+
variant?: "default" | "secondary" | "destructive" | "outline" | null | undefined;
|
|
16
|
+
} & ClassProp) | undefined) => string;
|
|
17
|
+
|
|
18
|
+
export declare function cn(...inputs: ClassValue[]): string;
|
|
19
|
+
|
|
20
|
+
export { }
|