import { Box, Button, ChervonDownIcon, Dropdown, List, Text, } from "@saleor/macaw-ui/next"; import React from "react"; interface ButtonWithDropdownProps { onClick: () => void; options: Array<{ label: string; testId: string; onSelect: () => void }>; testId?: string; } export const ButtonWithDropdown: React.FC = ({ onClick, options, children, testId, }) => ( {options.map(item => ( {item.label} ))} );