\n \n If you have a smaller audience size, but still want to dive into the\n world of commerce — our Self-Serve Shops are the solution you need.\n
\n \n We’ll empower you with a Shop and our exclusive offers, and you’ll\n take it from there.\n
\n \n >\n );\n};\n\nexport default PublishersSelfShopsStatic;\n","import React from \"react\";\nimport styled from \"styled-components\";\nimport { textBlack1, white } from \"./Colors\";\nimport { mediaMedium } from \"./variables\";\n\nconst Outline = styled.span`\n color: ${(props) => props.color ?? textBlack1};\n -webkit-text-fill-color: ${(props) => props.fill ?? white};\n -webkit-text-stroke-width: ${(props) => props.size ?? \"1px\"};\n -webkit-text-stroke-color: ${(props) =>\n props.stroke ?? props.color ?? textBlack1};\n\n @media (${mediaMedium}) {\n -webkit-text-stroke-width: ${(props) => props.size ?? \"2px\"};\n }\n`;\n\nconst OutlinedText = ({\n color,\n fill,\n stroke,\n size,\n as,\n component,\n children,\n inline\n}) => {\n const Element = component ?? \"