import {
Container,
SidebarWrap,
ChatIcon,
LogoIcon,
NumberBadge,
} from'./style';
constSidebar = () => {
const penIcon = (
<svgaria-hidden="true"width="14"height="14"viewBox="0 0 14 14"><pathd="m11.1 1.71 1.13 1.12c.2.2.2.51 0 .71L11.1 4.7 9.21 2.86l1.17-1.15c.2-.2.51-.2.71 0ZM2 10.12l6.37-6.43 1.88 1.88L3.88 12H2v-1.88Z"></path></svg>
);
return (
<Container><SidebarWrap><header>The Overflow Blog</header><ul><li>
{penIcon}Are meetings making you less productive?
</li><li>
{penIcon}The philosopher who believes in Web Assembly
</li></ul><header>Featured on Meta</header><ul><li><ChatIcon /><span>Improving the copy in the close modal and post notices - 2023 edition</span></li><li><LogoIcon />
Temporary policy: ChatGPT is banned
</li><li><LogoIcon />
The [protection] tag is being burninated
</li><li><LogoIcon />
Content Discovery initiative 4/13 update: Related questions using a Machine...
</li></ul><header>Hot Meta Posts</header><ul><li><NumberBadge>11</NumberBadge>
How to review First Answers that repeat previously posted answers
</li></ul></SidebarWrap></Container>
);
}
exportdefaultSidebar;