-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
87 lines (75 loc) · 1.53 KB
/
types.d.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// define your mf types here
declare module "aos";
declare module "*.svg" {
const content: string;
export default content;
}
interface SVGProps {
fill?: string;
className?: string;
onClick?: () => void;
}
type Props = {
show?: boolean;
};
type InputProps = {
id?: string;
error?: string;
placeholder?: string;
type?: string;
multiline?: boolean;
} & (
| React.InputHTMLAttributes<HTMLInputElement>
| React.TextareaHTMLAttributes<HTMLTextAreaElement>
);
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
disabled?: boolean;
loading?: boolean;
noDefault?: boolean;
size?: "default" | "sm" | "lg";
variant?: "primary" | "default" | "secondary" | "danger" | "google";
}
type ModalProps = {
close?: boolean;
title?: string;
isOpen: boolean;
className?: string;
onClose: () => void;
children: React.ReactNode;
};
type Option = {
label: string;
value: string;
};
type SelectProps = {
options: Option[];
defaultValue?: string;
className?: string;
onChange?: (value: string) => void;
};
type Tab = {
label: string;
value: string;
};
type TabsProps = {
tabs: Tab[];
className?: string;
defaultValue?: string;
buttonClassName?: string;
onChange?: (value: string) => void;
};
type ToggleProps = {
checked: boolean;
onChange: (checked: boolean) => void;
className?: string;
};
type TextareaProps = {
name: string;
value: string;
onChange: (e: any) => void;
placeholder?: string;
className?: string;
};
type OTPState = {
[key: string]: string;
};