import { Box, Button, Text } from "@saleor/macaw-ui/next"; import React from "react"; interface ExtendedAttributeRowProps { label: string; selectLabel: string; disabled: boolean; onSelect: () => void; } const ExtendedAttributeRow: React.FC = props => { const { label, selectLabel, disabled, onSelect, children } = props; return ( <> {label} {children} ); }; ExtendedAttributeRow.displayName = "ExtendedAttributeRow"; export default ExtendedAttributeRow;