2025-04-01 10:38:02 +09:00

19 lines
577 B
TypeScript

import { css, cx } from '@emotion/css';
import { GrafanaTheme2 } from '@grafana/data';
import { Button, ButtonProps, useStyles2 } from '@grafana/ui';
type Props = Omit<ButtonProps, 'variant' | 'size'>;
export const ActionButton = ({ className, ...restProps }: Props) => {
const styles = useStyles2(getStyle);
return <Button variant="secondary" size="xs" className={cx(styles.wrapper, className)} {...restProps} />;
};
export const getStyle = (theme: GrafanaTheme2) => ({
wrapper: css({
height: '24px',
fontSize: theme.typography.bodySmall.fontSize,
}),
});