flamegraphToolbar.tsx 340 B

123456789101112131415
  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)};
  11. gap: ${space(1)};
  12. `;