import { ComponentProps } from "react"; import { Button } from "./button"; import Panel from "./panel"; type ButtonSectionProps = ComponentProps; const ButtonSection = ({children, ...rest }: ButtonSectionProps) => { return ( ) } export default ButtonSection;