Skip to content

Commit dc1ca6a

Browse files
authored
🐛 fix: fix Groq miss combine (#13)
Fixed Groq index.ts
1 parent 550d709 commit dc1ca6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Groq/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import Avatar from './components/Avatar';
2+
import Combine from './components/Combine';
23
import Mono from './components/Mono';
34
import Text from './components/Text';
45
import { COLOR_PRIMARY, TITLE } from './style';
56

67
export type CompoundedIcon = typeof Mono & {
78
Avatar: typeof Avatar;
9+
Combine: typeof Combine;
810
Text: typeof Text;
911
colorPrimary: string;
1012
title: string;
@@ -13,6 +15,7 @@ export type CompoundedIcon = typeof Mono & {
1315
const Icons = Mono as CompoundedIcon;
1416

1517
Icons.Text = Text;
18+
Icons.Combine = Combine;
1619
Icons.Avatar = Avatar;
1720
Icons.colorPrimary = COLOR_PRIMARY;
1821
Icons.title = TITLE;

0 commit comments

Comments
 (0)