forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
29 lines (26 loc) · 966 Bytes
/
index.d.ts
File metadata and controls
29 lines (26 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import * as React from "react";
export type KawaiiMood =
| "sad"
| "shocked"
| "happy"
| "blissful"
| "lovestruck"
| "excited"
| "ko";
export interface KawaiiProps {
size?: number | undefined;
color?: string | undefined;
mood?: KawaiiMood | undefined;
}
export const SpeechBubble: React.ComponentType<KawaiiProps>;
export const Mug: React.ComponentType<KawaiiProps>;
export const Browser: React.ComponentType<KawaiiProps>;
export const Ghost: React.ComponentType<KawaiiProps>;
export const Cat: React.ComponentType<KawaiiProps>;
export const IceCream: React.ComponentType<KawaiiProps>;
export const CreditCard: React.ComponentType<KawaiiProps>;
export const File: React.ComponentType<KawaiiProps>;
export const Backpack: React.ComponentType<KawaiiProps>;
export const Planet: React.ComponentType<KawaiiProps>;
export const Chocolate: React.ComponentType<KawaiiProps>;
export const Folder: React.ComponentType<KawaiiProps>;