-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSection.d.ts
More file actions
54 lines (54 loc) · 2.18 KB
/
Copy pathSection.d.ts
File metadata and controls
54 lines (54 loc) · 2.18 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
import React from 'react';
export declare const Section: React.MemoExoticComponent<React.ForwardRefExoticComponent<Readonly<import("../types").PartialNullable<{
Component: import("../types").TAnyComponent;
flex: number;
padding: string | number;
margin: string | number;
shape: import("../types").TShapeName;
border: import("../types").TBorderName;
href: string;
colors: import("../types").TColorsProp;
testId: string;
isDisabled: boolean;
opacityDisabled: number;
isHidden: boolean;
state: import("../types").TActivityState;
custom: Readonly<{
[key: string]: unknown;
}>;
style: import("../types").TStyle;
}>> & Readonly<import("../types").PartialNullable<{
direction: "row" | "column" | "row-reverse" | "column-reverse";
justify: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
align: "flex-start" | "flex-end" | "center" | "stretch" | "baseline";
shadow: import("../types").TShadowName;
events: "auto" | "none" | "box-none" | "box-only";
}>> & Readonly<import("../types").PartialNullable<{
name: string;
size: import("../types").TSpecSize;
sizeText: import("../types").TSpecSize;
sizeIcons: import("../types").TSpecSize;
alignText: "justify" | "auto" | "center" | "left" | "right";
hasMentions: boolean;
isDecorated: boolean;
label: string;
labelActive: string;
icons: import("../types").TIconEmbedList;
iconsActive: import("../types").TIconEmbedList;
shadowText: import("../types").TShadowTextName;
flexText: number;
lines: number;
font: string;
fontActive: string;
isActive: boolean;
colorsActive: import("../types").TColorsProp;
select: import("../types").TGenButtonGroupEmbed<import("../types").TButtonEmbed>;
}>> & Readonly<import("../types").PartialNullable<{
buttonGroup: import("../types").TButtonGroupEmbed;
}>> & Readonly<import("../types").PartialNullable<{
divider: import("../types").TDividerEmbed;
}>> & Readonly<import("../types").PartialNullable<{
children: React.ReactNode;
header: React.ReactNode;
onPress: import("../types").TButtonGroupOnPress;
}>> & React.RefAttributes<unknown>>>;