import { NsfwIcon } from "@lume/icons"; import { cn } from "@lume/utils"; import * as Tooltip from "@radix-ui/react-tooltip"; import { Dispatch, SetStateAction } from "react"; export function NsfwToggle({ nsfw, setNsfw, className, }: { nsfw: boolean; setNsfw: Dispatch>; className?: string; }) { return ( Mark as sensitive content ); }