flamegraphToolbar.tsx 332 B

1234567891011121314
  1. import styled from '@emotion/styled';
  2. import space from 'sentry/styles/space';
  3. interface FlamegraphToolbarProps {
  4. children: React.ReactNode;
  5. }
  6. export const FlamegraphToolbar = styled('div')<FlamegraphToolbarProps>`
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin: ${space(1)} ${space(4)};
  11. `;