D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
parca
/
QueryEditor
/
Filename :
EditorRow.tsx
back
Copy
import { css } from '@emotion/css'; import React from 'react'; import { GrafanaTheme2 } from '@grafana/data'; import { useStyles2 } from '@grafana/ui'; import { Stack } from './Stack'; interface EditorRowProps { children: React.ReactNode; stackProps?: Partial<React.ComponentProps<typeof Stack>>; } export const EditorRow = ({ children, stackProps }: EditorRowProps) => { const styles = useStyles2(getStyles); return ( <div className={styles.root}> <Stack gap={2} {...stackProps}> {children} </Stack> </div> ); }; const getStyles = (theme: GrafanaTheme2) => { return { root: css({ padding: theme.spacing(1), backgroundColor: theme.colors.background.secondary, borderRadius: theme.shape.borderRadius(1), }), }; };