import * as React from "react"; import SecondaryButton from "../../button/components/SecondaryButton"; import { cx } from "@emotion/css"; import { flexItem } from "../../shared/styles/styleUtils"; interface ConfigurationMapRowActionProps { /** * What to render as the action content */ children: React.ReactNode; /** * Click handler for the action */ onClick: (event?: React.SyntheticEvent) => void; } export const rowActionStaticClassname = "static_configurationMapRowAction"; const ConfigurationMapRowAction = (props: ConfigurationMapRowActionProps) => { const { onClick, children } = props; return ( {children} ); }; export default ConfigurationMapRowAction;