import styled from 'styled-components'; import { StyledCard } from 'components/Form/Card'; import Heading from 'components/Form/Heading'; import colors from 'styles/colors'; import { ReactNode } from 'react'; const Header = styled(StyledCard)` margin: 1rem; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; padding: 0.5rem 1rem; align-items: center; `; const Nav = (props: { children?: ReactNode}) => { return (
Web Check Icon Web Check {props.children && props.children}
); }; export default Nav;