import clsx from "clsx" import React from "react" import Actionables, { ActionType } from "../../molecules/actionables" type SectionProps = { children?: React.ReactNode title?: string actions?: ActionType[] customActions?: React.ReactNode forceDropdown?: boolean status?: React.ReactNode className?: string } const Section = ({ title, actions, customActions, forceDropdown = false, status, children, className, }: SectionProps) => { const hasHeader = title || actions || customActions || status return (