pills.tsx 174 B

123456789
  1. import styled from '@emotion/styled';
  2. const Pills = styled('div')`
  3. display: flex;
  4. flex-wrap: wrap;
  5. font-size: ${p => p.theme.fontSizeSmall};
  6. `;
  7. export default Pills;