forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
833 B
33 lines
833 B
import React from 'react';
|
|
import { css, cx } from '@emotion/css';
|
|
|
|
import { useTheme2 } from '@grafana/ui';
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
|
|
interface HorizontalGroupProps {
|
|
children: React.ReactNode;
|
|
wrap?: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
export const HorizontalGroup = ({ children, wrap, className }: HorizontalGroupProps) => {
|
|
const theme = useTheme2();
|
|
const styles = getStyles(theme, wrap);
|
|
|
|
return <div className={cx(styles.container, className)}>{children}</div>;
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2, wrap?: boolean) => ({
|
|
container: css`
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: ${wrap ? 'wrap' : 'no-wrap'};
|
|
& > * {
|
|
margin-bottom: ${theme.spacing()};
|
|
margin-right: ${theme.spacing()};
|
|
}
|
|
& > *:last-child {
|
|
margin-right: 0;
|
|
}
|
|
`,
|
|
});
|
|
|