@pipedream/pexels
Version:
Pipedream pexels Components
81 lines (78 loc) • 1.03 kB
JavaScript
export const ORIENTATION_OPTIONS = [
{
label: "Landscape",
value: "landscape",
},
{
label: "Portrait",
value: "portrait",
},
{
label: "Square",
value: "square",
},
];
export const SIZE_OPTIONS = [
{
label: "Large (24MP)",
value: "large",
},
{
label: "Medium (12MP)",
value: "medium",
},
{
label: "Small (4MP)",
value: "small",
},
];
export const COLOR_OPTIONS = [
{
label: "Red",
value: "red",
},
{
label: "Orange",
value: "orange",
},
{
label: "Yellow",
value: "yellow",
},
{
label: "Green",
value: "green",
},
{
label: "Turquoise",
value: "turquoise",
},
{
label: "Blue",
value: "blue",
},
{
label: "Violet",
value: "violet",
},
{
label: "Pink",
value: "pink",
},
{
label: "Brown",
value: "brown",
},
{
label: "Black",
value: "black",
},
{
label: "Gray",
value: "gray",
},
{
label: "White",
value: "white",
},
];