import React from 'react' import { SeaPageElements } from './seaPage.style' export type IllustrationType = { small: string; large: string } export type SeaPageProps = Readonly<{ children: React.ReactNode heading: string illustationUrl: IllustrationType }> export const SeaPage = ({ children, heading, illustationUrl }: SeaPageProps) => ( {heading} {children} )