-
Notifications
You must be signed in to change notification settings - Fork 198
Expand file tree
/
Copy pathGraphics.d.ts
More file actions
54 lines (54 loc) · 1.54 KB
/
Graphics.d.ts
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
/// <reference types="react" />
import * as React from 'react';
export interface Props {
maskID: string;
}
export declare class Skull extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class SkullOutline extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Bat extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Cumbia extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Deer extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Diamond extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Hola extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Selena extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Pizza extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Resist extends React.Component<Props> {
static optionValue: string;
render(): JSX.Element;
}
export declare class Bear extends React.Component<Props> {
static optionValue: string;
private mask1;
private path1;
render(): JSX.Element;
}
export default class Graphics extends React.Component<Props> {
render(): JSX.Element;
}