import { Button } from '@/components/button' import AngleRightIcon from '@/public/angle-right.svg' interface SectionWraperProps { title: string showAllButton?: boolean children: React.ReactNode childrenClass?: string } export const SectionWrapper = ({ title, showAllButton, children, childrenClass, }: SectionWraperProps) => (

{title}

{showAllButton && (
{children}
)