Skip to content

Commit bee90f7

Browse files
committed
feat: add other type
1 parent 9326529 commit bee90f7

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

packages/ui-variants/src/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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';
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from './other';
2+
3+
export * from './theme';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { type ClassValue } from 'clsx';
2+
3+
export type ClassValueProp = {
4+
/** class name */
5+
className?: ClassValue;
6+
};
7+
8+
export { ClassValue };

0 commit comments

Comments
 (0)