Files
shadcn-ui/apps/v4/components/lo-fi/component.tsx
2026-03-02 12:49:00 +04:00

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 }