We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9326529 commit bee90f7Copy full SHA for bee90f7
packages/ui-variants/src/index.ts
@@ -0,0 +1,7 @@
1
+export * from './shared';
2
+
3
+export * from './types';
4
5
+export * from './variants/button';
6
7
+export * from './variants/card';
packages/ui-variants/src/types/index.ts
@@ -0,0 +1,3 @@
+export * from './other';
+export * from './theme';
packages/ui-variants/src/types/other.ts
@@ -0,0 +1,8 @@
+import { type ClassValue } from 'clsx';
+export type ClassValueProp = {
+ /** class name */
+ className?: ClassValue;
+};
8
+export { ClassValue };
0 commit comments