timeRangeItemLabel.tsx 255 B

1234567891011
  1. import styled from '@emotion/styled';
  2. import space from 'sentry/styles/space';
  3. const TimeRangeItemLabel = styled('div')`
  4. margin-left: ${space(0.5)};
  5. margin-top: ${space(0.25)};
  6. margin-bottom: ${space(0.25)};
  7. `;
  8. export default TimeRangeItemLabel;