@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface EmojiCategory

    A categorised set of emoji for the picker component.

    const foods: EmojiCategory = {
    name: 'Food & Drink',
    emojis: ['🍎', '🍕', '🍺', '☕'],
    };
    interface EmojiCategory {
        emojis: readonly string[];
        name: string;
    }
    Index

    Properties

    Properties

    emojis: readonly string[]

    Array of emoji characters in this category.

    name: string

    Display name for the category tab/header.