Skip to content

Instantly share code, notes, and snippets.

@librz
Created August 7, 2025 06:54
Show Gist options
  • Save librz/026a1807f1658b83c8482fdb8f5ee857 to your computer and use it in GitHub Desktop.
Save librz/026a1807f1658b83c8482fdb8f5ee857 to your computer and use it in GitHub Desktop.
Mock data that I often used
export const fruitOptions = [
{
value: "apple",
label: "Apple 🍎",
},
{
value: "grape",
label: "Grape πŸ‡",
},
{
value: "orange",
label: "Orange 🍊",
},
{
value: "blueberry",
label: "Blueberry 🫐",
},
{
value: "honeydew",
label: "Honeydew 🍈",
},
{
value: "lemon",
label: "Lemon πŸ‹",
},
{
value: "banana",
label: "Banana 🍌",
},
{
value: "cherry",
label: "Cherry πŸ’",
},
{
value: "peach",
label: "Peach πŸ‘",
},
{
value: "watermelon",
label: "Watermelon πŸ‰",
},
{
value: "pineapple",
label: "Pineaple 🍍",
},
{
value: "kiwi-fruit",
label: "Kiwi Fruit πŸ₯",
},
{
value: "mango",
label: "Mango πŸ₯­",
},
{
value: "avocado",
label: "Avocado πŸ₯‘",
},
{
value: "coconut",
label: "Coconut πŸ₯₯",
},
{
value: "pear",
label: "Pear 🍐",
},
{
value: "strawberry",
label: "Strawberry πŸ“",
},
{
value: "lime",
label: "Lime πŸ‹β€πŸŸ©",
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment