nextui/apps/docs/components/figma-button.tsx

29 lines
617 B
TypeScript

"use client";
import {Button, Link} from "@nextui-org/react";
import {usePostHog} from "posthog-js/react";
export const FigmaButton = () => {
const posthog = usePostHog();
return (
<Button
isExternal
showAnchorIcon
as={Link}
className="max-w-fit text-current"
color="default"
href="https://www.figma.com/community/file/1267584376234254760"
variant="bordered"
onPress={() => {
posthog.capture("FigmaPage - Open Figma Link", {
action: "click",
category: "figma",
});
}}
>
Open in Figma
</Button>
);
};