"use client"; import React, { FC } from "react"; // helpers import { cn } from "@/helpers/common.helper"; import { SidebarHamburgerToggle } from "../core"; type Props = { children: React.ReactNode; className?: string; }; export const ProfileSettingContentWrapper: FC = (props) => { const { children, className = "" } = props; return (
{children}
); };