Files
grafana/public/app/core/components/CardButton.tsx
Ashley Harrison 47f8717149 React: Use new JSX transform (#88802)
* 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
2024-06-25 12:43:47 +01:00

54 lines
1.3 KiB
TypeScript

import { css } from '@emotion/css';
import { HTMLAttributes } from 'react';
import * as React from 'react';
import { GrafanaTheme2 } from '@grafana/data';
import { Icon, IconName, useStyles2 } from '@grafana/ui';
interface Props extends HTMLAttributes<HTMLButtonElement> {
icon: IconName;
onClick: () => void;
children: React.ReactNode;
}
export const CardButton = React.forwardRef<HTMLButtonElement, Props>(
({ icon, children, onClick, ...restProps }, ref) => {
const styles = useStyles2(getStyles);
return (
<button {...restProps} className={styles.action} onClick={onClick}>
<Icon name={icon} size="xl" />
{children}
</button>
);
}
);
CardButton.displayName = 'CardButton';
const getStyles = (theme: GrafanaTheme2) => {
return {
action: css({
display: 'flex',
flexDirection: 'column',
height: '100%',
justifySelf: 'center',
cursor: 'pointer',
background: theme.colors.background.secondary,
borderRadius: theme.shape.radius.default,
color: theme.colors.text.primary,
border: 'unset',
width: '100%',
justifyContent: 'center',
alignItems: 'center',
textAlign: 'center',
'&:hover': {
background: theme.colors.emphasize(theme.colors.background.secondary),
},
}),
};
};