UNPKG

665 BJavaScriptView Raw
1import { COMPONENT_TYPES, FORM_TYPES } from "../core/component-types";
2export const SEED_DATA = {
3 name: "Linear Gradient",
4 tag: "LinearGradient",
5 doc_link: "https://docs.expo.io/versions/latest/sdk/linear-gradient/",
6 code_link: "https://github.com/expo/expo/blob/master/packages/expo/src/effects/LinearGradient.d.ts",
7 category: COMPONENT_TYPES.layout,
8 supports_list_render: false,
9 layout: {},
10 props: {
11 colors: {
12 label: "Colors",
13 description: "The colors required for your gradient",
14 editable: true,
15 required: true,
16 value: null,
17 type: FORM_TYPES.gradient
18 }
19 }
20};
21//# sourceMappingURL=LinearGradient.js.map
\No newline at end of file