This commit introduces a batch of UI components such as Accordion, Alert, Avatar, Badge, etc. Each component is provided with proper TypeScript type definitions. Reusable styling is catered for many of these using the `cn` utility for applying styles. Integration with `@radix-ui/react-*` libraries is also evident in some components for advanced and flexible functionality.
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
"use client"
|
|
|
|
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio"
|
|
|
|
const AspectRatio = AspectRatioPrimitive.Root
|
|
|
|
export { AspectRatio }
|