import styled from 'styled-components';

export const BEM_CLASS = '{{ filename }}';

export const S{{ pascalCase filename }} = styled.div`
  .${BEM_CLASS} {
    &__container {
      display: flex;
    }
  }
`;
