UNPKG

kazama-emoji-component

Version:

Emoji Picker component modified by Kazama DeFi

12 lines (8 loc) 265 B
import { useCustomEmojisConfig } from '../config/useConfig'; export function useShouldHideCustomEmojis() { const customCategoryConfig = useCustomEmojisConfig(); if (!customCategoryConfig) { return false; } return customCategoryConfig.length === 0; }