import type {ComponentProps} from 'react'; import styled from '@emotion/styled'; import {Flex} from 'sentry/components/profiling/flex'; import ThemeSwitcher from 'sentry/components/stories/themeSwitcher'; import {IconSentry} from 'sentry/icons'; import {space} from 'sentry/styles/space'; interface Props extends ComponentProps<'div'> {} export default function StoryHeader({style}: Props) { return (

Component Library

); } const H1 = styled('h1')` margin: 0; display: flex; gap: ${space(1)}; align-items: center; `;