All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m9s
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
import cn from "./lib/cn"
|
|
|
|
export function Tile({ children, className }: { children?: React.ReactNode; className?: string }) {
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"relative rounded-xl bg-neutral-200 dark:bg-neutral-900 flex flex-col justify-end items-start",
|
|
className,
|
|
)}
|
|
>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|