import classNames from "clsx";
import { useTheme } from "../Flowbite";
import { splitProps } from "solid-js";
export const FooterTitle = p => {
    const [local, props] = splitProps(p, ["class", "title"]);
    return (<h2 data-testid="flowbite-footer-title" class={classNames(useTheme().theme.footer.title.base, local.class)} {...props}>
      {local.title}
    </h2>);
};
