import React from 'react'; import styled from 'styled-components'; export interface HeaderSecondaryProps { children: React.ReactElement; } export function HeaderSecondary({ children }: HeaderSecondaryProps) { return {children}; } const HeaderContainer = styled.div` position: relative; width: fit-content; margin: auto; `;