flamegraphToolbar.tsx 283 B

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