1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import styled from '@emotion/styled';
- import Panel from 'sentry/components/panels/panel';
- import {space} from 'sentry/styles/space';
- import {Subtitle} from 'sentry/views/performance/landing/widgets/widgets/singleFieldAreaWidget';
- type Props = {
- children: React.ReactNode;
- button?: JSX.Element;
- subtitle?: React.ReactNode;
- title?: React.ReactNode;
- };
- export default function ChartPanel({title, children, button, subtitle}: Props) {
- return (
- <Panel>
- <PanelBody>
- {title && (
- <Header>
- {title && <ChartLabel>{title}</ChartLabel>}
- {button}
- </Header>
- )}
- {subtitle && (
- <SubtitleContainer>
- <Subtitle>{subtitle}</Subtitle>
- </SubtitleContainer>
- )}
- {children}
- </PanelBody>
- </Panel>
- );
- }
- const SubtitleContainer = styled('div')`
- padding-top: ${space(0.5)};
- `;
- const ChartLabel = styled('div')`
- ${p => p.theme.text.cardTitle}
- `;
- const PanelBody = styled('div')`
- padding: ${space(2)};
- `;
- const Header = styled('div')`
- padding: 0 ${space(1)} 0 0;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- `;
|