We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550d709 commit dc1ca6aCopy full SHA for dc1ca6a
src/Groq/index.ts
@@ -1,10 +1,12 @@
1
import Avatar from './components/Avatar';
2
+import Combine from './components/Combine';
3
import Mono from './components/Mono';
4
import Text from './components/Text';
5
import { COLOR_PRIMARY, TITLE } from './style';
6
7
export type CompoundedIcon = typeof Mono & {
8
Avatar: typeof Avatar;
9
+ Combine: typeof Combine;
10
Text: typeof Text;
11
colorPrimary: string;
12
title: string;
@@ -13,6 +15,7 @@ export type CompoundedIcon = typeof Mono & {
13
15
const Icons = Mono as CompoundedIcon;
14
16
17
Icons.Text = Text;
18
+Icons.Combine = Combine;
19
Icons.Avatar = Avatar;
20
Icons.colorPrimary = COLOR_PRIMARY;
21
Icons.title = TITLE;
0 commit comments