2022-11-25 13:25:03 -07:00
|
|
|
import * as React from 'react';
|
2022-06-25 20:49:25 -04:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import styles from '@/components/server/console/style.module.css';
|
|
|
|
|
|
|
|
interface ChartBlockProps {
|
|
|
|
title: string;
|
|
|
|
legend?: React.ReactNode;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ({ title, legend, children }: ChartBlockProps) => (
|
|
|
|
<div className={classNames(styles.chart_container, 'group')}>
|
|
|
|
<div className={'flex items-center justify-between px-4 py-2'}>
|
2022-12-15 19:06:14 -07:00
|
|
|
<h3 className={'font-header transition-colors duration-100 group-hover:text-slate-50'}>{title}</h3>
|
2023-01-12 12:31:47 -07:00
|
|
|
{legend && <p className={'flex items-center text-sm'}>{legend}</p>}
|
2022-06-25 20:49:25 -04:00
|
|
|
</div>
|
2022-06-26 15:13:52 -04:00
|
|
|
<div className={'z-10 ml-2'}>{children}</div>
|
2022-06-25 20:49:25 -04:00
|
|
|
</div>
|
|
|
|
);
|