mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 21:22:12 +08:00

* update eslint, tsconfig + esbuild to handle new jsx transform * remove thing that breaks the new jsx transform * remove react imports * adjust grafana-icons build * is this the correct syntax? * try this * well this was much easier than expected... * change grafana-plugin-configs webpack config * fixes * fix lockfile * fix 2 more violations * use path.resolve instead of require.resolve * remove react import * fix react imports * more fixes * remove React import * remove import React from docs * remove another react import
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
// Libraries
|
|
import { css } from '@emotion/css';
|
|
import { MouseEvent } from 'react';
|
|
import * as React from 'react';
|
|
|
|
// Components
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { IconName, IconType, IconSize, IconButton, useStyles2 } from '@grafana/ui';
|
|
|
|
interface Props {
|
|
icon?: IconName;
|
|
tooltip: string;
|
|
onClick?: (event: MouseEvent<HTMLButtonElement>) => void;
|
|
href?: string;
|
|
children?: React.ReactNode;
|
|
iconType?: IconType;
|
|
iconSize?: IconSize;
|
|
}
|
|
|
|
export const DashNavButton = ({ icon, iconType, iconSize, tooltip, onClick, children }: Props) => {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div className={styles.noBorderContainer}>
|
|
{icon && (
|
|
<IconButton
|
|
name={icon}
|
|
size={iconSize}
|
|
iconType={iconType}
|
|
tooltip={tooltip}
|
|
tooltipPlacement="bottom"
|
|
onClick={onClick}
|
|
/>
|
|
)}
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const getStyles = (theme: GrafanaTheme2) => ({
|
|
noBorderContainer: css({
|
|
padding: `0 ${theme.spacing(0.5)}`,
|
|
display: 'flex',
|
|
}),
|
|
});
|