import React from 'react' import { Button, ButtonStatus } from '../button' import { BaseSection, SectionContentSize } from '../layout/section/baseSection' import { StyledHelpers } from './Helpers.style' export type HelpersProps = Readonly<{ illustration: JSX.Element content: Readonly<{ title: string paragraph: string button: string }> onClick: () => void }> export const Helpers = ({ illustration, content, onClick }: HelpersProps) => { const { title, paragraph, button } = content return ( {title} {paragraph} {illustration} ) }