shlink-web-client/src/visits/charts/ChartCard.tsx

17 lines
603 B
TypeScript
Raw Normal View History

import { Card, CardHeader, CardBody, CardFooter } from 'reactstrap';
import { FC, PropsWithChildren, ReactNode } from 'react';
import './ChartCard.scss';
type ChartCardProps = PropsWithChildren<{
title: Function | string;
footer?: ReactNode;
}>;
export const ChartCard: FC<ChartCardProps> = ({ title, footer, children }) => (
<Card role="document">
<CardHeader className="chart-card__header">{typeof title === 'function' ? title() : title}</CardHeader>
<CardBody>{children}</CardBody>
{footer && <CardFooter className="chart-card__footer--sticky">{footer}</CardFooter>}
</Card>
);