import { SparklesIcon } from "@heroicons/react/24/outline"; import { memo } from "react"; import cn from "@/helpers/cn"; import { useProModalStore } from "@/store/non-persisted/modal/useProModalStore"; interface ProFeatureNoticeProps { feature: string; className?: string; } const ProFeatureNotice = ({ feature, className }: ProFeatureNoticeProps) => { const { setShow: setShowProModal } = useProModalStore(); return (