import { DetailedHTMLProps, HTMLAttributes } from "react"; import { twMerge } from "tailwind-merge"; /** * # Paragraph Tag * @className twui-p | twui-paragraph */ export default function P({ ...props }: DetailedHTMLProps, HTMLHeadingElement>) { return (

{props.children}

); }