import styled from '@emotion/styled'; import {Flex} from 'sentry/components/container/flex'; import Link from 'sentry/components/links/link'; import ThemeSwitcher from 'sentry/components/stories/themeSwitcher'; import {space} from 'sentry/styles/space'; function SentryGradientLogo() { return ( ); } export function StoryHeader() { return (

Component Library

); } const H1 = styled('h1')` margin: 0; display: flex; gap: ${space(1)}; align-items: center; font-size: 24px; color: ${p => p.theme.textColor}; svg { width: 36px; height: 36px; margin-right: ${space(0.5)}; } `;