sliderLabel.tsx 202 B

123456789
  1. import styled from '@emotion/styled';
  2. const SliderLabel = styled('label')`
  3. font-size: 14px;
  4. margin-bottom: ${p => p.theme.grid}px;
  5. color: ${p => p.theme.subText};
  6. `;
  7. export default SliderLabel;