mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
34 lines
882 B
TypeScript
34 lines
882 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { GalleryHorizontalIcon } from "lucide-react"
|
|
|
|
import { trackEvent } from "@/lib/events"
|
|
import { cn } from "@/lib/utils"
|
|
import { useLayout } from "@/hooks/use-layout"
|
|
import { Button } from "@/registry/new-york-v4/ui/button"
|
|
|
|
export function SiteConfig({ className }: React.ComponentProps<typeof Button>) {
|
|
const { layout, setLayout } = useLayout()
|
|
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() => {
|
|
const newLayout = layout === "fixed" ? "full" : "fixed"
|
|
setLayout(newLayout)
|
|
trackEvent({
|
|
name: "set_layout",
|
|
properties: { layout: newLayout },
|
|
})
|
|
}}
|
|
className={cn("size-8", className)}
|
|
title="Toggle layout"
|
|
>
|
|
<span className="sr-only">Toggle layout</span>
|
|
<GalleryHorizontalIcon />
|
|
</Button>
|
|
)
|
|
}
|