mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-08 14:35:16 +00:00
Add initial dashboard page and metric cards for Acme branding. #VERCEL_SKIP Co-authored-by: null <162737925+zebulonhermann@users.noreply.github.com>
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
'use client'
|
|
|
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'
|
|
|
|
function AspectRatio({
|
|
...props
|
|
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
|
|
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
|
|
}
|
|
|
|
export { AspectRatio }
|