mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
29 lines
784 B
TypeScript
29 lines
784 B
TypeScript
import Link from "next/link"
|
|
|
|
import { Atom } from "@/components/lo-fi/atom"
|
|
|
|
function Component({ href, ...props }: React.ComponentProps<typeof Link>) {
|
|
return <Link href={href} className="group flex flex-col gap-2" {...props} />
|
|
}
|
|
|
|
function ComponentContent({ ...props }: React.ComponentProps<typeof Atom>) {
|
|
return (
|
|
<Atom
|
|
shade="50"
|
|
className="flex aspect-video items-center justify-center rounded-lg bg-muted/30 p-4 ring ring-muted *:w-full *:max-w-[70%]"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function ComponentName({ ...props }: React.ComponentProps<"div">) {
|
|
return (
|
|
<div
|
|
className="text-center font-medium text-foreground underline-offset-2 group-hover:underline"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { Component, ComponentContent, ComponentName }
|