import * as React from "react"; import { cx } from "@emotion/css"; import { configurationMapRow, showActionOnHoverStyle } from "../style"; import { flex, padding, border } from "../../shared/styles/styleUtils"; interface ConfigurationMapRowProps { children: React.ReactNode; /** * If the style for the action is applied on hover */ onlyShowActionOnHover?: boolean; /** * Allows custom styling */ className?: string; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } const ConfigurationMapRow = ({ children, onlyShowActionOnHover, className, "data-cy": dataCy = "configurationMapRow" }: ConfigurationMapRowProps) => (
{children}
); export default ConfigurationMapRow;