- Added essential configuration files including components.json, package.json, and tsconfig.json to establish the component library structure. - Introduced global styles in globals.css and layout structure in layout.tsx for consistent design application. - Implemented various UI components such as Accordion, AlertDialog, Button, Card, and more, enhancing the component library for future development. - Included utility functions and hooks to support component functionality and responsiveness. This commit sets up the groundwork for a comprehensive UI component library, facilitating a modular and scalable design system.
22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
import * as React from "react"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export interface LeadTextProps extends React.HTMLAttributes<HTMLParagraphElement> {}
|
|
|
|
const LeadText = React.forwardRef<HTMLParagraphElement, LeadTextProps>(({ className, ...props }, ref) => {
|
|
return (
|
|
<p
|
|
ref={ref}
|
|
className={cn(
|
|
"text-[clamp(0.95rem,2vw,1.3rem)] text-[rgba(31,27,23,0.75)]",
|
|
"max-w-[54ch] leading-relaxed",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
})
|
|
LeadText.displayName = "LeadText"
|
|
|
|
export { LeadText }
|