import styled from 'styled-components';

export const CardsBlock = styled.div.attrs<{ className?: string }>(({ className }) => ({
  'data-component-name': 'Cards/CardsBlock',
  className,
}))`
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
`;
