import { cn } from "@/lib/utils"; import { MotionProps } from "framer-motion"; import React from "react"; import Balancer from "react-wrap-balancer"; export const Subheading = ({ className, as: Tag = "h2", children, ..._props }: { className?: string; as?: any; children: any; props?: React.HTMLAttributes; } & MotionProps & React.HTMLAttributes) => { return ( {children} ); };