export const styledByMediaQuery = (style:string, breakpoint = '768px') => `
  @media screen and (min-width: ${breakpoint}) {
    ${style};
  }
`;
